///////////
//navigation hover state -- jquery
///////////

$(document).ready(function(){
  	$(".navListItem").mouseover(function(){
	   	//$(this).css("background-color","#bb5b44");
		
		$(this).animate(
			{
				opacity: .99,
				backgroundColor: '#617d80'
			},
			'fast'
		);
		
	 });
	
	$(".navListItem").mouseout(function(){
	   	//$(this).css("background-color","#bb5b44");

		$(this).animate(
			{
				opacity: .99,
				backgroundColor: '#71969a'
			},
			'fast'
		);

	 });
});