var Ajax = {

	addToCart : function(url)
	{
		$('#minibasket').load(url, function(){
			Ajax.displayBasketPopup();
			Ajax.highlightBasketItem();
		});
		return false;
	},

	highlightBasketItem : function()
	{
		$('#addedItem')
			.css("background", "#4cac4c")
			.animate({backgroundColor: "white"},1500);
	},

	displayBasketPopup: function()
	{
		var popup = $('#minibasketpopup').appendTo('body');
		if(jQuery.browser.msie && (jQuery.browser.version < 7))
		{
			popup
				.css("position","absolute")
				.css("top", $(window).scrollTop() + ($(window).height()/3))
				.css("left", ($(window).width()/2)-(popup.width()/2));
		}
		popup
			.fadeIn('slow')
			.animate({opacity: 1.0}, 3000)
			.fadeOut('slow', function() {
				$(this).remove();
			});
	}
};