
jQuery().ready(function(){
	
	
	jQuery('.fulllink').click(function() {
		window.location = jQuery(this).find('a').attr('href');
	});
	
	jQuery('.home-loxcall').click(function() {
		window.location = jQuery(this).find('a').attr('href');
	});

	var easing = "linear";
	var duration = 50;
	var callback = function(){if(jQuery.browser.msie){this.style.removeAttribute('filter');}};
	var callback_2 = function(){this.style.display="none";};

	jQuery("#basketContent").animate({opacity:0},0);
	jQuery("#basketButton").mouseenter(function(){
		var bc = document.getElementById("basketContent");
		bc.style.display ="block";
		jQuery("#basketContent").animate({opacity:1}, {easing:easing,duration:duration,complete:callback});
	});
	jQuery("#basket").mouseleave(function(){
		jQuery("#basketContent").animate({opacity:0}, {easing:easing,duration:200,complete:callback_2});
	});
});
