$(function(){
	if(window.location.pathname == "/cart"){
		$('.buttonProceedCheckout').attr("onclick",null).click(function(){
			var checked = $("#termsAgree").is(":checked");
			if(!checked){
				alert("You must agree to our shipping and return policies before checking out.");
				return false;
			}
			else{
				window.location.href = 'verify_login';
			}
		})
	}
});

