function showSubmenu( id ) {
	$(".sub"+id).toggle();
	if ( $("#m"+id).get(0).className == 'open' ) {
		$("#m"+id).removeClass('open');
	} else {
		$("#m"+id).addClass('open');
	}
}

function addToCart( pid, ilosc ) {
	var ilosc = parseInt(ilosc);
	$.get("/_ajax/cart.php", { action: "update", pid: pid, ilosc: ilosc });
	showCart('cart');
	showCart('top_cart');
}

function showCart(div) {
	$.get("/_ajax/cart.php", { action: "show", div: div },
		function(data){
			document.getElementById(div).innerHTML = data;
	});
}

function kopiujWysylkowy()
{
	document.getElementById('w_imie').value = document.getElementById('imie').value;
	document.getElementById('w_nazwisko').value = document.getElementById('nazwisko').value;
	document.getElementById('w_firma').value = document.getElementById('firma').value;
	document.getElementById('w_adres').value = document.getElementById('adres').value;
	document.getElementById('w_miasto').value = document.getElementById('miasto').value;
	document.getElementById('w_kod_pocztowy').value = document.getElementById('kod_pocztowy').value;
}

function toggleCart( cart, info ) {
	$("#"+cart).toggle();
	$("#"+info).toggle();
}