$(document).ready(function(){
	/*
	// Update grand total when a user select their shipping option
	$("#FlatRateShipping input").focus(function(){
		productcost = parseFloat($("#ProductSubTotal").text());
		thiscost = parseFloat($(this).attr("id"));
		
		grandtotal = productcost + thiscost;
		$("#GrandTotal").html("$" + grandtotal);
	});
	
	// Make sure they select a shipping option
	$("#CheckoutLink a").click(function(event){
		event.preventDefault();
		checkeditem = $("#FlatRateShipping input:checked").val();
		if (!checkeditem)  {
			alert("Please choose a shipping option above");
		} else {
			$("#CheckoutForm").submit();	
		}
	});
	*/
});