$(document).ready(function(){
	$('.menu li .normalMenu').each(function(){	
		$(this).before($(this).clone().removeClass().addClass('hoverMenu'));
	});

	$('.menu li').hover(function(){	
		$(this).find('.hoverMenu').stop().animate({marginTop:'0px'},200);
	},

	function(){
		$(this).find('.hoverMenu').stop().animate({marginTop:'-31px'},200);
	});
});
