$(document).ready(function()
{
	$(".addtocart a").click(function() {
		$('#superwindow').css({
			'left':$(window).width()/2-$('#superwindow').width()/2+$(window).scrollLeft() + "px",
			'top':$(window).height()/2-$('#superwindow').height()/2+$(window).scrollTop() + "px"
		});
		if ($(this).attr("class")!="dis")
		{
			var oldhref=$(this).attr("href");
			var thisa=this;
			$(this).attr("href", "");
			$(this).attr("class", "dis");
			$('#superwindow').fadeIn("normal");
			$.get(oldhref,{},
				function(data)
				{
					$("#cart").html($("#cart", data).html());
					//alert("!!!");
					$('#superwindow').text("Товар добавлен");
					$('#superwindow').animate({opacity: 1.0}, 2000)
					$('#superwindow').fadeOut(1000);
					$(thisa).attr("href", oldhref);
					$(thisa).attr("class", "");
					
				});
		}
	    return false;
	});
	
	$('body').append('<div id="superwindow" style="z-index:30;position:absolute; width:200px; background:#EDEFF6; border:1px solid #CBBEBA; padding:2em; display:none; text-align:center;">Подождите, товар добавляется в корзину...</div>')
	//$('#superwindow').css({'left':$(window).width()/2-$('#superwindow').outerWidth()/2, 'top':$(window).height()/2-$('#superwindow').outerHeight()/2});
});
