//TODO: Deprecate...used in the About us Image Gallery...other places?
function goToPage(page) {
	NextPage = this.path+page;
	jQuery("#" + this.box).html(this.loadingMessage);
	jQuery("#" + this.box).load(NextPage);
	return false;
}
function showBigPhoto(page) {
	bigPhoto = this.path+page;
	jQuery("#" + this.bigBox).load(bigPhoto);
	return false;
}

function staticGallery(_path, _box, _bigBox, _loadingMessage) {
	this.path = _path;
	this.box = _box;
	this.bigBox =_bigBox;
	this.loadingMessage = _loadingMessage;
	this.goTo = goToPage;
	this.showBig = showBigPhoto;
}