$(function(){ 	

	$(".block-menu ul > li:last-child").addClass("last");
	
	
	$('.new-list > li > a').hover(
		 		function(){
		 			$(this).stop().animate( { backgroundColor: "#272727" }, 400 );
		 		},
		 		function(){
		 			$(this).stop().animate( { backgroundColor: "#F5F5F5" }, 300 )
		 		}
	);

});