$(document).ready(function () {
	//Append a div with hover class to all the LI
	$('#menu ul li.menu-normal').each(function(){
		$(this).append('<div class="hover '+$(this).attr('id')+'"></div>');
	});
	$('#menu ul li.menu-normal').hover(		
		//Mouseover, fadeIn the hidden hover class	
		function() {			
			$(this).children('div').fadeIn('1000');			
		}, 
		//Mouseout, fadeOut the hover class
		function() {		
			$(this).children('div').fadeOut('10');			
	});
});
