var PagePic = new Array(
"StandardA",
"Shed",
"10FtFive",
"WE1_",
"FR2_");

var PageAlt = new Array(
"garden shed",
"storage shed",
"five sided garden shed",
"storage shed with arbor",
"storage shed");

var PageURL = new Array(
location.pathname + "garden-sheds/index",
location.pathname + "storage-sheds/index",
location.pathname + "five-sided-garden-sheds/index",
location.pathname + "garden-sheds/7x10",
location.pathname + "storage-sheds/10x10");

var indexNum = 0;
var maxNum = 4;
var maxPics = 5;
var CurrPicName = PagePic[0];
var CurrURLName = PageURL[0];

function NextPage() {
//	ShowDetailOver()
	window.location = CurrURLName + ".asp";
}