$(function()
{
	 $(".webExtra LI").hover(
  function () {
	$(this).addClass("hvd");
	$('.hvd IMG').fadeTo("fast", 0.2);
    $('.hvd .infoCopy').fadeIn("fast");
  },
  function () {
  	$('.hvd IMG').fadeTo("fast", 1);
    $('.webExtra LI .infoCopy').fadeOut("fast");
	$(".webExtra LI").removeClass("hvd"); 
  }
);

 
 

});
