$(document).ready(function(){
	$('.nav').find('li:not(.selected)').hover(
		function(){
			$(this).stop(false,true).animate({'backgroundColor':'#3a3a3a', 'borderLeftColor':'#005d82', 'borderRightColor':'#005d82'}, 500);
			$(this).find('a').stop(false,true).animate({'color':'#0C9'}, 500);							   
		},
		function(){
			$(this).stop(false,true).animate({'backgroundColor':'#2a2a2a', 'borderRightColor':'#2a2a2a', 'borderLeftColor':'#2a2a2a', 'color':'#B8B8B8'}, 500);
			$(this).find('a').stop(false,true).animate({'color':'#B8B8B8'}, 500);							   
		});
})