jQuery(document).ready(function() {

//document.getElementById("goo").onclick = "function() { doNothing(); }";

jQuery("#goo").click( 
function(){
	jQuery(document).css({backgroundColor: 'black'});
	jQuery.blockUI(
	{  
        message: jQuery('#tallContent'),  
        css: { top: '10%', backgroundColor:'7e7e7e', width:'35%' } 
	} 
	);
   	setTimeout(jQuery.unblockUI, 10000); 
   	$("#backLink").val($('a[name=goBack]').attr('href'));
}); 

jQuery("a[name=goBack]").click( 
function(){
	jQuery(document).css({backgroundColor: 'black'});
	jQuery.blockUI(
	{  
        message: jQuery('#tallContent'),  
        css: { top: '10%', backgroundColor:'7e7e7e', width:'35%' } 
	} 
	);
   	setTimeout(jQuery.unblockUI, 10000); 
   	
   	$("#backLink").val($('a[name=goBack]').attr('href'));

});  

jQuery("a[name=goNext]").click( 
function(){
	jQuery(document).css({backgroundColor: 'black'});
	jQuery.blockUI(
	{  
        message: jQuery('#tallContent'),  
        css: { top: '10%', backgroundColor:'7e7e7e', width:'35%' } 
	} 
	);
   	setTimeout(jQuery.unblockUI, 10000); 
   	
   	$("#backLink").val($('a[name=goNext]').attr('href'));

});  

jQuery('#cancel').click(
function(){
	jQuery.unblockUI()
    
}
);  
 
jQuery('#menuheader').click(
function(){
	jQuery('#menuitems').addClass('show').slideDown('slow');
	jQuery('li').mouseover(function(){
		this.style.backgroundColor='#Fa89AB';
	});
	jQuery('li').mouseout(function(){
		this.style.backgroundColor='#17a';
	});
}
); 

});

function doNothing(){
	return false;
}