$(document).ready(function(){

/* BASKET HIGHLIGHT */
if($('.right .highlight').length>0) {
	$('.right .highlight ul').animate({
		"backgroundColor":"#8dc63f"
	},1500,"swing",function(){
		$('.right .highlight ul').animate({
		"backgroundColor":"#ededed"
		},1500);
	});
}

});