$().ready(function() {
	$(".catalog_photo_list").hover(function () 
	{
		$(this).children('img').css('border','1px solid #6D635C');
	}, 
	function () {
		$(this).children('img').css('border','1px solid #fff');
	});
});
