// menu, content and footer should not be seen before all elements are loaded
$(document).ready(function(){
	
	if ($.browser.opera) {
		$('.menu, .contentArea, .footer').css('visibility','visible');
 	}
	
	$(window).load(function(){
		$('.menu, .contentArea, .footer').css('visibility','visible');		
	});
	

});