// Wordpress safe JQuery invocation
var $j = jQuery.noConflict();
$j(function()
{
	// See if we can find the updated basket
	var basket = $j(".basket-updated");
	if (basket) 
	{
		var wholeBasket = basket.parent()
		
		if (wholeBasket) 
		{		
			wholeBasket.animate({ 'backgroundColor': '#0066CC'},400); 
			wholeBasket.animate({ 'backgroundColor': '#1f1f1f'},800);
		}
	}
	

});
