$(function(){
var Path = window.location.pathname; 
if (Path.substring(Path.lastIndexOf('/')).toLowerCase() == '/shoppingcart.asp') {

$("[id^='Quantity']").each(function(){
$(this).data('default', $(this).val());
});

$("a#loginlink1").click(function(){
var hasChanged = false;
$("[id^='Quantity']").each(function(){
if($(this).val() != $(this).data('default')){
hasChanged = true;
}
});
if(hasChanged){
alert("The quantities of one or more items in your cart has changed, your cart will be recalculated now.");
$('#btnRecalculate').trigger('click');
return false;
}
});

$("[id^='Quantity']").each(function(){
$(this).data('default2', $(this).val());
});

$("[name='Proceed_To_Checkout_Form']").submit(function(){
var hasChanged = false;
$("[id^='Quantity']").each(function(){
if($(this).val() != $(this).data('default2')){
hasChanged = true;
}
});
if(hasChanged){
alert("The quantities of one or more items in your cart has changed, your cart will be recalculated now.");
$('#btnRecalculate').trigger('click');
return false;
}
});
}
});
