function CScreenShot(xThumbPath, xFullPath, xCaption)
{
	this.ThumbPath = xThumbPath;
	this.FullPath = xFullPath;
	this.Caption = xCaption;
}

var ScreenShots = new Array();

ScreenShots.push(new CScreenShot("/screenshots/thm_mitreton.jpg", "screenshots/mitreton.jpg", "Mitreton"));
ScreenShots.push(new CScreenShot("/screenshots/thm_forest_stream.jpg", "screenshots/forest_stream.jpg", "Forest Stream"));
ScreenShots.push(new CScreenShot("/screenshots/thm_property_for_sale.jpg", "screenshots/property_for_sale.jpg", "Property For Sale"));
ScreenShots.push(new CScreenShot("/screenshots/thm_fresha_field.jpg", "screenshots/fresha_field.jpg", "Fresha Field"));
ScreenShots.push(new CScreenShot("/screenshots/thm_fresha_city_center.jpg", "screenshots/fresha_city_center.jpg", "Fresha City Center"));
ScreenShots.push(new CScreenShot("/screenshots/thm_mitreton_farm.jpg", "screenshots/mitreton_farm.jpg", "Mitreton Farm"));
ScreenShots.push(new CScreenShot("/screenshots/thm_whispy_desert.jpg", "screenshots/whispy_desert.jpg", "Whispy Desert"));
ScreenShots.push(new CScreenShot("/screenshots/thm_beach.jpg", "screenshots/beach.jpg", "Beach"));
ScreenShots.push(new CScreenShot("/screenshots/thm_desert_city.jpg", "screenshots/desert_city.jpg", "Desert City"));
ScreenShots.push(new CScreenShot("/screenshots/Frog_Pond_18.png", "screenshots/Frog_Pond_Full.png", "Frog Pond"));

var OtherShot = -1;

function GetRandShot() {
	var tmp = 0;
	do {
		tmp = parseInt(Math.random() * (ScreenShots.length - 1));
	} while (OtherShot == tmp);
	OtherShot = tmp;
	
	return ScreenShots[tmp];
}