	function Gallery(pID, pName, pDescription) {
		this.ID = pID;
		this.Name = pName;
		this.Description = pDescription;
	}

	var Galleries = new Array ();

	var Pictures = new Array ();

	var NumPics = 0;
	var NumGalleries = 0;
	
