$(document).ready(function(){
	/* MENU LOGO */
	$("#menuLogoHover").hover(function(){
		$("#menuLogo").fadeIn('slow');
	});

	$("#menuLogoHover").mouseout(function(){
		$("#menuLogo").fadeOut(1000);
	});	
	//PRELOAD MENU LOGO
	function preload(arrayOfImages) {
		$(arrayOfImages).each(function(){
			$('<img/>')[0].src = this;
		});
	}
	preload([
		'/img/template/menu_logo.png'
	]);	
	$("#menuLogo").hide();
	
	
	/* NOTIFICATION */
	$(".notification").click(function(){
		$(this).animate({ height: 0, opacity: 0 }, 'slow');
	});
	
});
