$(document).ready(function(){
	$(".catalog a").hover(function(){
        $(this).find(".overlay").stop(true, true).fadeTo(300, 1);
    },function(){
        $(this).find(".overlay").stop(true, true).fadeTo(300, 0);
    });
});

