$(document).ready(function() {		  
	$("#same_as_bill").livequery('click', function(event) {		
		if ($("input[@name='same_as_bill']").is(":checked")) {
			$("#shipTo_firstName").val($("#billTo_firstName").val());	
			$("#shipTo_lastName").val($("#billTo_lastName").val());
			$("#shipTo_street1").val($("#billTo_street1").val());
			$("#shipTo_city").val($("#billTo_city").val());
			$("#shipTo_state").val($("#billTo_state").val());
			$("#shipTo_postalCode").val($("#billTo_postalCode").val());		
		}	
		else {
		}
	});

	$("a[href='#']").click(function () { 
		return false;					   
	});	
	$("a[href='#']").livequery("click", function(){
		return false;
	});
	
	$("#quantity").livequery('change', function(event) {		
		var quantity = $("#quantity").val();
		st = quantity * 250.00;
		$("#subtotal").val(st.toFixed(2));	
		sh = quantity * 4.99;
		$("#sh").val(sh.toFixed(2));			
		total = (st * .06) + st + sh;
		$("#total").val(total.toFixed(2));			
	});	
});
