$(document).ready(function() {
	$(".hover").hover(
	  function () {
	  	$(this).find("img").stop().animate({ opacity: 0.08 }, 800);
			$(this).find(".text").stop().animate({ opacity: 1.0 }, 800);
	  }, 
	  function () {
	    $(this).find("img").stop().animate({ opacity: 1.0 }, 800);
			$(this).find(".text").stop().animate({ opacity: 0.0 }, 800);
	  }
	);
    
});








