$(document).ready(function(){

	$('#menuUL li .normalbot1').each(function(){

		$(this).before($(this).clone().removeClass().addClass('hoverbot1'));

	});
	
	$('#menuUL li').hover(function(){
	
		$(this).find('.hoverbot1').stop().animate({marginTop:'0px'},500);

	},
	
	function(){
	
		$(this).find('.hoverbot1').stop().animate({marginTop:'-61px'},500);

	});
	
});


