$(document).ready(function(){
	$(".model_category img, .modelrow img, .stories img").fadeTo("slow", 1.0); // This sets the opacity of each success story image to fade down to 60% when the page loads
	$(".model_category img, .modelrow img, .stories img").hover(function(){
		$(this).fadeTo("slow", 0.6); // This set the opacity of each success story image to 60% on hover
	},function(){
   		$(this).fadeTo("slow", 1.0); // This sets the opacity back to 100% on mouseout
	});
});

