addNamespace("SiteContentMaster");
SiteContentMaster.product_detail_class = Class.create();
SiteContentMaster.product_detail_class.prototype = (new AjaxPro.Request()).extend({
	GetProductDiscount: function(quantity, callback) {
		return this.invoke("GetProductDiscount", {"quantity":quantity}, callback);
	},
	GetUnitPriceByQuantity: function(pid, quantity, callback) {
		return this.invoke("GetUnitPriceByQuantity", {"pid":pid, "quantity":quantity}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/SiteContentMaster.product_detail,SiteContentMaster.ashx";
	}
})
SiteContentMaster.product_detail = new SiteContentMaster.product_detail_class();

