$(window).load(function(){
	addToCart();
});

function addToCart(){
	$('a.amountBtn').click(function(a){
		a.preventDefault();
		
		$(this).attr("href", $(this).attr("href")+"&antall="+$('#fld'+ $(this).attr('name')).val());

		window.location = $(this).attr('href');
		
	});
}

function confirmDelete(){
	var answer = confirm("Leave tizag.com?")
	if (answer){
		alert("Bye bye!")
		window.location = "http://www.google.com/";
	}
	else{
		alert("Thanks for sticking around!")
	}
}
