if(typeof Layout == "undefined") Layout={};
Layout_class = function() {};
Object.extend(Layout_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	ChangeCulture: function(__Culture) {
		return this.invoke("ChangeCulture", {"__Culture":__Culture}, this.ChangeCulture.getArguments().slice(1));
	},
	RemoveProduct: function(vID) {
		return this.invoke("RemoveProduct", {"vID":vID}, this.RemoveProduct.getArguments().slice(1));
	},
	UpdateProduct: function(vID, qty) {
		return this.invoke("UpdateProduct", {"vID":vID, "qty":qty}, this.UpdateProduct.getArguments().slice(2));
	},
	AddToCart: function(vID, qty, path) {
		return this.invoke("AddToCart", {"vID":vID, "qty":qty, "path":path}, this.AddToCart.getArguments().slice(3));
	},
	GetModelsByBrand: function(brand) {
		return this.invoke("GetModelsByBrand", {"brand":brand}, this.GetModelsByBrand.getArguments().slice(1));
	},
	GetVehiclesByModel: function(brand, model) {
		return this.invoke("GetVehiclesByModel", {"brand":brand, "model":model}, this.GetVehiclesByModel.getArguments().slice(2));
	},
	url: '/ajaxpro/Layout,App_Web_wvil2xqc.ashx'
}));
Layout = new Layout_class();


