$(document).ready(function(){

	/* Cycle the photos */
	$('#block-cck_blocks-field_banner_image .block-inner .content').cycle('fade');
	
	/* Order form calc */

		
			// bind the recalc function to the quantity fields
			$("input[@id^=edit-submitted-order-online-order-qty-item]").bind("keyup", calcme);
			// run the calculation function now
			calcme();

});

function calcme() {
	var qty = $("input[@id^=edit-submitted-order-online-order-qty-item]").sum();
	var price = "23.21";
	var tot = qty * price;
	$("#edit-submitted-order-online-order-total").val(
					// round the results to 2 digits
					"$" + tot.toFixed(2)
				);

}