jQuery('.foot li').each(function(){jQuery(this).css("opacity","0.5") })
  .hover(function(){jQuery(this).animate({
		  opacity:"1",
          marginLeft: "10px"
	  })
	  },function(){
	  jQuery(this).animate({
		  opacity:".5",
          marginLeft: "0px"
	  })
	  
});
  

jQuery('.#catmenu li ul').each(function(){jQuery(this).css("opacity","0.2") })
  .hover(function(){jQuery(this).animate({
		  opacity:"1",
	  })
	  },function(){
	  jQuery(this).animate({
		  opacity:".5",
	  })
	  
});

jQuery('.foot h5').each(function(){jQuery(this).css("opacity","0.5") })
  .hover(function(){jQuery(this).animate({
		  opacity:"1",
          marginLeft: "0px",
	  },500)
	  },function(){
	  jQuery(this).animate({
		  opacity:".5",
          marginLeft: "0px"
	  },500)
	  
});
