$(document).ready(function() {
	
	$(".basketMessage").slideDown(600);
	
	$(".product img").hover(function() {		
		$(this).parents(".product").find(".title p a").css({"color" : "blue"});
		$(this).parents(".product").css("background-color", "#DFDFDF");
	},
	function() {
		$(this).parents(".product").find(".title p a").css({"color" : ""});
		$(this).parents(".product").css("background-color", "");
	});
	
	$(".product .title p a").hover(function() {		
		$(this).parents(".product").css("background-color", "#DFDFDF");
	},
	function() {		
		$(this).parents(".product").css("background-color", "");
	});
	
	$(".product .atb").hover(function() {		
		$(this).parents(".product").find(".title p a").css({"color" : "blue"});
		$(this).parents(".product").css("background-color", "#DFDFDF");
	},
	function() {
		$(this).parents(".product").find(".title p a").css({"color" : ""});
		$(this).parents(".product").css("background-color", "");
	});
	
	$(".category").hover(function() {		
		$(this).css("background-color", "#CFD7FF");
		$(this).css("border-color", "#5F61FF");
	},
	function() {		
		$(this).css("background-color", "");
		$(this).css("border-color", "white");
	});
});	
