window.onload = function() 
{ 
	getCartItems();
}



//calls
function getCartItems()
{
	x_getCartItems(displayCartItems);
	$$('shoppingCartWrapper').innerHTML = '<img src="/i/loading2.gif" alt="Va rugam asteptati" />';
}

function addCartItem(variant)
{
	var count = $$("txCount"+variant).value;
	x_addCartItem(variant,count,getCartItems);
	window.scroll(0,0);
}

function removeFromCart(id)
{
	x_removeFromCart(id,getCartItems);
}

//callbacks
function displayCartItems(s)
{
	$$('shoppingCartWrapper').innerHTML = s;
}


