/* Author: 

*/

$(window).load(function() {
      
      $(".isotope-item img").hover(function(){
		$(this).fadeTo(500, 0.3); $(this).closest('.isotope-item').children('h3').removeClass("gallery-link", 150).addClass("");  // This sets the opacity to 100% on hover
		},function(){
		$(this).fadeTo(500, 1.0); $(this).closest('.isotope-item').children('h3').addClass("gallery-link", 150); // This sets the opacity back to 60% on mouseout
});

});




















