var pageOrder = new Array ("competitor","quarter_mile","finish_line","winners_circle","pro_competitor","raglan","moto_jersey","performance_tees","digital_tees","mens_hoodie","ladies_hoodie");


function createLinks()  {
	
	var i = 0;
	
	// figure out what number this page is in the array and set "i" equal to it	
	for (i=0; i< pageOrder.length; i++) {
		if (pageOrder[i] == thisPage)
			break;
		}
		

	// if "i" the last page, the next page goes back to the beginning; otherwise increment by 1 	
	if (i == pageOrder.length - 1) {
		nextPage = pageOrder[0]+".htm";
	} else {
		nextPage = pageOrder[i+1]+".htm";
	}
	

	// if "i" the first page, the previous page is the last one in the order; otherwise decrease by 1 	
	if (i == 0) {
		previousPage = pageOrder[pageOrder.length-1]+".htm";
	} else {
		previousPage = pageOrder[i-1]+".htm";
	}
}
