$(document).ready(function(){
	// case study, download-press
	$('div.case-study,div.download-press').hover(function(){
		$(this).find('img').fadeTo(500,0);
	},function(){
		$(this).find('img').fadeTo(500,1.0);
	});
});
