$(document).ready(function(){
	$(".promoShop").click(function(){
		var rel = $(this).attr("rel");
		location.href=rel;
	});

	$(".promoShop").hoverIntent(function(){
		$(this).animate({backgroundColor:"#F7FFAF"});
	},
	function(){
		$(this).animate({"backgroundColor": "#fff"}, "slow");
	});

	$(".promoShop").click(function(){
		var rel = $(this).attr("rel");
		location.href=rel;
	});


	var initColor;
	$(".prod-short").hover(function(){
		initColor = $(this).css('backroundColor');
		$(this).css({
			backgroundColor:"#F7FFAF"
			});
	},
	function(){
		$(this).css({backgroundColor: initColor});
	});
});