 $(document).ready(function(){
							
   $(".menu a").mouseover(function(){
	   
	   	$(this).parent().stop();
		$(this).stop();
		
		
		$(this).parent().animate({ 
		backgroundColor : "#748422"
		
      }, 500 ); 
		
			$(this).animate({ 
		color : "#2e2a1e"
		
      }, 500 );  
		
		
		
	});
   
   $(".menu a").mouseout(function(){
	   $(this).parent().stop();
		$(this).stop();
		
		$(this).parent().animate({ 
		backgroundColor : "#000"
		
      }, 200 );  
		
		$(this).animate({ 
		color : "#fff"
		
      }, 200 );  
		
	});
	
	
 });
