// JavaScript Document
/*function update_form()
{

 var u = document.getElementById('update_cart');
 u.value = 1;
 var c = "shoppingcart";
 document.c.submit();
}


function continue_shopping()
{
	location.href = "index.php";
}*/

function continue_shopping()
{
	location.href = "index.php";

}

$(document).ready(function() {
	$("#update_button").click(function () { 
		$("#update_cart").attr("value", 1); 									
		$("form:shoppingcart").submit(); });
			
	$("#checkout_button").click(function () { 
	$("form:shoppingcart").submit(); });
});