//js for checkout
$(document).ready(function(){
						   
//check that agree to terms ticked
$('#checkout-submit').click(function(e){
									 
if($('.checkout_confirm').is(':checked'))
{
	
}
else //not checked terms
{
	$('#checkout_form').addClass('error');
	alert('You must agree to our terms and conditions before placing your order.');
	e.preventDefault();
}
}); //end checkout btn click

//remove error form form if its there



});//end ready