$(function(){

	$("#navigation_top li a").hover(function(){
		
		$(this).animate({
			backgroundColor:'#177795',
			color:'#fff'
		},'slow')
					
	},function(){
		$(this).animate({
			backgroundColor:'#2CC4F4',
			color:'#eee'
		},'slow');
				
	});//end hover
		
})		
		
