$(document).ready(function(){					   
	$('.proj-2 span').css("opacity","0");
	$('.proj-2').find("a").hover(function(e) {
	    	$(this).find("span").hoverFlow(e.type,{ opacity: 1 }, 500);
			$(this).find("img").hoverFlow(e.type,{ opacity: .24 }, 200);
	  }, function(e) {
    		$(this).find("span").hoverFlow(e.type, { opacity: 0 }, 500);
			$(this).find("img").hoverFlow(e.type,{ opacity:  1 }, 200);
  });
});
