// when DOM is ready 
jQuery(document).ready(function ($) {
	$(".moreDetail").click(function() {
		$.scrollTo(0,0);
	});
	
	$("form.cart_form").submit(function() {
		var title = "Your Shopping Cart";
		var orderCode = $("input[name=order_code]", this).val();
		var quantity = $("input[name=quantity]", this).val();
		var url = "cart_action.php?order_code=" + orderCode + "&quantity=" + quantity + "&TB_iframe=true&height=400&width=780";
		tb_show(title, url, false);
		
		return false;
	});
});

jQuery(function($) {
	function updateCatalogPrice(newprice) {
		$("#cart_total").html(newprice);
	}
});