$(document).ready(function() {
	
	$(".tr2 div img").each(function (i) {
		$(this).attr("alt", $(this).attr("src") );
	});
	
	$(".catalog a").mouseenter(function(){
		$(this).css({'text-decoration':'underline'});
	}).mouseleave(function(){
		$(this).css({'text-decoration':'none'});
	});
	
	$(".table .click").mouseenter(function(){
			$('a', this).css({'text-decoration':'underline'});
			$("a img", this).fadeOut(1, function() {
				$(this).attr("src", $(this).parent().parent().find('img:last').attr('alt')  );
			}).fadeIn(200);
	}).mouseleave(function(){
			$('a', this).css({'text-decoration':'none'});
			$("a img", this).fadeOut(1, function() {
				$(this).attr("src", $(this).attr('alt'));
			}).fadeIn(1);
    }).click(function(){
		document.location.href = $('a', this).attr('href');
	});
	
});
