	// increase the default animation speed to exaggerate the effect
	$.fx.speeds._default = 1000;
	$(function() {
		$( "#more1" ).dialog({
			autoOpen: false,
			width: 900
		});

		$( "#opener1" ).click(function() {
			$( "#more1" ).dialog( "open" );
	var x= $(this).position().left - document.scrollleft;
	var y= $(this).position().top - document.scrolltop;
	    $("#more1").dialog('option', 'position', [y, x]);
			
			return false;
		});
	});
	


