// Config
var max_opacity = 100;
var min_opacity = 60;

// Do the do
jQuery(document).ready(function(){
	// Set elements to the min opacity
	jQuery('.wf-fade img').css('opacity',min_opacity/100);

	// Fade functions
	jQuery('.wf-fade').hover(function(){
		// Fade in
		jQuery(this).children('img').animate({'opacity':max_opacity/100},500);
	},
	function(){
		// Fade out
		jQuery(this).children('img').animate({'opacity':min_opacity/100},500);
	});
});