jQuery.noConflict();

jQuery(document).ready(function($) {
	function check() {
		$.get("./modules/check-form.php",
			{ qty: $("#fQty option:selected").text(), attribute: $("#fAttribute option:selected").text(), product: $("#product_id").val() },
			function(data) {
				$('#to-cart-submit').html(data);
			}
		);
	}

	$("#fUseBillingAddress").click(function() {
		if($("#fUseBillingAddress:checked").length == 1) {
			$("#shippingform").hide();
		}
		else {
			$("#shippingform").show();
		}
	});

	$("#pay-continue").click(function() {
		if($("#terms:checked").length == 1) {
			return true;
		}
		else {
			alert("You must agree to the terms & conditions");
			return false;
		}
	});

	if($("#fQty")) check();

	$('#fQty').change(check)
	$('#fAttribute').change(check);
});

