jQuery(function(){
	jQuery('#background').maximize({  });
		
	setTimeout(function() {
		jQuery('article').stop().animate({opacity: 1}, 700);
	}, 1500);
	
	jQuery(document).ready(function() {
		jQuery('.showBg').hover(function() {
			jQuery('article, .mainMenu').stop().animate({opacity: 0}, {queue:false, duration:300});
		},
		function(){
			jQuery('article, .mainMenu').stop().animate({opacity: 1}, {queue:false, duration:300});
		});
	});
});

