$(document).ready(function() {
	$("input[@name=country]").click(function() {
		$("#modform2")[0].submit();
	});

	$(".qtybox").validation({
		type: "int",
		onError: function() {
			this.value = this.defaultValue;
		}
	});
	
	$(".remprod").click(function() {
		return confirm("Are you sure you want to remove this product from your cart?");
	});
	
	$.jheartbeat.set({
		url: "heartbeat.asp",
		delay: 900000
	});
});

function toggleGift() {
	if (document.getElementById("thecode").style.visibility == "hidden") {
		document.getElementById("thecode").style.visibility = "visible";
	}else{
		document.getElementById("thecode").style.visibility = "hidden";
	}
}