var pageOrder = new Array ("link_datsun_film","majorino_mini_film","cardenas_bmw","wheeler_gt3_film","mattice_datsun","danmar_ferrari_f360","wheeler_997_film","delane_26r","wheeler_mb_film","herr_mini","ocampo_lotus","keagy_porsche","hull_mini","viggars_f3_film","viggars_ff_film","majorino_film","hunter_porsche_film","danmar_truck_film","burmeister_film","danmar_maserati_film","michaels_porsche_film","warneke_bmw_film","ton_lexus_film","nguyes_yukon_film","forsythe_mini","wheeler_gallardo_film","wheeler_bmw_film","bostick_truck_film","carlsson_film", "scott_film","ferrari_f430_bell","wels_acura","ferrari_f360_bell","miller_ferrari_film","harrison_avalon_film","jose_acura_film", "valle_ferrari_film", "sahara_aura_film","vegas_jaguar_film","mah_lexus_film","harris_nissan_film","pahomi_film","mitchell_ferrari_film", "masserati_film", "alvich_lincoln_film","pryor_ptcruiser_film", "harris_motorhome_film","lim_lotus_film","warneke_ford_film","warneke_audi","monsalve_film","albert_film","foxx_film", "hille_film", "rhodes_film","brown_custom_flames");


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