addNamespace("photogx");
photogx.albums_class = Class.create();
photogx.albums_class.prototype = (new AjaxPro.Request()).extend({
	AddToFavorites: function(pid, callback) {
		return this.invoke("AddToFavorites", {"pid":pid}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/photogx.albums,photogx.ashx";
	}
})
photogx.albums = new photogx.albums_class();


