

// shirt customisation -------------------------------------//
$(document).ready(function(){
	$("#customise").click(function() {
		
	var chk = $("#customise").attr("checked");
	
    if (chk == true) {
		// quantity of customisations required and product sku
		var formrows = $('#qty').val();
		var prod_sku = $('#sku').val();
		
		$.ajax({
			type: "POST",
			url: "includes/inc.shirt_customise.php",
			data: "formrows=" + formrows + "&prod_sku=" + prod_sku,
			success: function(html){
				$("#custom_info").html(html).hide().fadeIn('fast');
			}
		});
	}
	if (chk == false)
	{
		$("#custom_info").hide('fast');
	}

	});

	$("#qty").change(function() {
		
		var chk = $("#customise").attr("checked");
	
	    if (chk == true) {
			// quantity of customisations required and product sku
			var formrows  = $('#qty').val();
			var prod_sku  = $('#sku').val();
			
			$.ajax({
				type: "POST",
				url: "includes/inc.shirt_customise.php",
				data: "formrows=" + formrows + "&prod_sku=" + prod_sku,
				success: function(html){
					$("#custom_info").html(html).hide().fadeIn('fast');
				}
			});
		}
		if (chk == false)
		{
			$("#custom_info").hide('fast');
		}
		
	});
});
