var basketWindow;

function handleBasketClick()
{
	if(basketWindow) basketWindow.remove();
	basketWindow = jQuery("<div>").append(jQuery("#minibasketwrapper").clone()).addClass("hoverbasket");
	//jQuery("<a href=\"#\" class=\"button suljenappi\">sulje</a>").appendTo(basketWindow).click(function(){basketWindow.remove();return false;});
	var x=jQuery("a#shoppingcart").offset();
	basketWindow.css(
		{
			"position":"absolute",
			"left":x.left-10,
			"top":x.top+15
		}
	).appendTo("body").hide().slideDown();
}

function initBasket()
{
	jQuery("a#shoppingcart").click(handleBasketClick);
}

jQuery(document).ready(initBasket);
