$(document).ready(function(){
	$(".imagecontainer img").hover(
		function () {
			$(".photo_header").fadeOut();			
		}, 
		function () {
			$(".photo_header").fadeIn();			
		}
	);	
});