
jQuery(document).ready(function() {	
	 jQuery('#dialog').jqm();

	   jQuery('#footer').append('<div class="jqmWindow" id="dialog"></div><div style="display:none;" class="close"> <img   src="/custom/files/media/hardysclose.jpg" /></div>');
	   jQuery('.close').click(function(){
		  	jQuery('.close').hide();
			jQuery('#dialog').jqmHide();
	
	  });
	});
	
	// Bind the event.
		 function popup(aurl){
		    jQuery('#dialog').jqm({ajax:aurl});
		    // Alerts every time the hash changes!
		   // alert( location.hash );
			jQuery('#dialog').jqmShow();
			jQuery('.close').show('0');
			jQuery('html, body').animate({scrollTop:0}, 'slow');
		 }
	
		  
	
	

