
function updateWarenkorbKurz()
{
	new Ajax.Updater('warenkorbInhaltKurz', '/sixcms/detail.php', {
		method: 'get', 
		parameters: { template: 'd_shops_wk_inhalt_kurz'}
	});
}

function inDenWarenkorb2(addId, shopId, event)
{
	new Ajax.Request('/sixcms/detail.php', {
		method: 'get', 
		parameters: { template: 'd_shops_in_wk_ajax', add_id: addId, shop_id: shopId},
		onSuccess: wkEingangOk(event)
	});

	updateWarenkorbKurz.delay(3);
}

function wkEingangOk(event)
{
	var animSrc = $('wkEingangOkAnimation').src;
	
			window.scrollTo(0,0);
		
	$('wkEingangOkAnimation').src = '/pix/spacer.gif';
	$('wkEingangOk').show();
	$('wkEingangOkAnimation').src = animSrc;
	Element.hide.delay(3, 'wkEingangOk'); 
}
