$(document).ready(function(){

	// number only to numeric fields
	$("input.numeric").numeric();
	
	// if there is an update message on the order review page fade it out
	if ($('#order-msg').length) {
		$("#order-msg").fadeOut(8000);
	}

	// show countdown for despatch
	if ($('#despatchCountdown').length) {
		$('#despatchTimer').countdown({until: countdownDate, timezone: +10});	
	}

});	// end doc ready


// update order form qtys
function updateOrder() {
	var process = 'updateItems';
	$("input#process").val(process);
	$("#orderform").submit();
}


// remove item from order
function removeItem(itemtoRemove) {
	var process = 'removeItem';
	$("input#process").val(process);
	$("input#removeItem").val(itemtoRemove);
	$("#orderform").submit();
}
