var pageOrder = new Array ("weber_premium","brassel_prem","proctor_prem", "warneke_prem", "blakey_prem", "wolford_sunseeker","bridges_sun","carson_sunseeker","majorino_a","johnson_a","leuchner_a","canney_trailer_a","foley_a","bundy_a","little_a", "scheid", "slevin", "carson_a", "strong", "garrett_a","preston_d","garrett_d","millet_e","beazley_e","aston_h","johnson_highlander","carson_splatter","carson_scallop","harley_trailer_flames","flames_a","flames_black","dodge_flames","tripoint_wrap","systemx","providence_trailer","onsite_logo","elrancho_band","your_turf","lowande_custom","crew_custom","krull_b","modisette_b", "ducoing_b","carson_b","carson_carrera_lite","carson_d","carson_d_a","carson_e","laporte_c","carson_c","trailerware_f2","garrett_f2","haywood_f2","carson_f3","reiner_g2","carson_g2_a","carson_g2","toland_custom","bostick_custom","goin_yard_custom","shetland_custom","dunacheck_logo","trailerware_logo","minkoff_logo","ducoing_logo","team_titan","dmg_logo","gct_logo");


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";
	}
}