$(document).ready(function(){
	$(".bigLentaEach").hover(
		function(){
			$(this).children(".photoDiscr").fadeIn();
		},function(){		
			$(this).children(".photoDiscr").fadeOut();
	});
});

