
	Model100 = new Array("images/100SideView.jpg","images/100-1.jpg","images/100-2.jpg");
	Model150 = new Array("images/150FrontView.jpg", "images/150-1.jpg", "images/150-2.jpg");
	Model250 = new Array("images/250SideView.jpg", "images/250-1.jpg", "images/250-2.jpg");
	Model400 = new Array("images/400.jpg", "images/400-1.jpg", "images/400-2.jpg");
	Model600 = new Array("images/600SideView.jpg", "images/600-1.jpg", "images/600-2.jpg");
	ModelB41 = new Array("images/B-41-1.jpg", "images/B-41-2.jpg", "images/B-41-3.jpg");	
	ModelB81 = new Array("images/B-81-1.jpg", "images/B-81-2.jpg", "images/B-81-3.jpg");
	ModelB40 = new Array("images/B-40-1.jpg", "images/B-40-2.jpg", "images/B-40-3.jpg");
	ModelB80 = new Array("images/B-80-1.jpg", "images/B-80-2.jpg", "images/B-80-3.jpg");
	ModelB40A = new Array("images/B-40A-1.jpg", "images/B-40A-2.jpg", "images/B-40A-3.jpg");
	ModelB80A = new Array("images/B-80A-1.jpg", "images/B-80A-2.jpg", "images/B-80A-3.jpg");
	Fish3 = new Array("images/3FT-1.jpg", "images/3FT-2.jpg");
	Fish4 = new Array("images/4FT-1.jpg", "images/4FT-2.jpg");
	Fish5 = new Array("images/5FT-1.jpg", "images/5FT-2.jpg");
	Fish6 = new Array("images/6FT-1.jpg", "images/6FT-2.jpg");	
	Model400AH = new Array("images/400AH-1.jpg", "images/400AH-2.jpg", "images/400AH-3.jpg", "images/400AH-4.jpg");
	Model600AH = new Array("images/600AH-1.jpg", "images/600AH-2.jpg", "images/600AH-3.jpg", "images/600AH-4.jpg");
	ModelGunChuck = new Array("images/Model20GunChuck-1.jpg", "images/Model20GunChuck-2.jpg", "images/Model20GunChuck-3.jpg");
	
	thisImg = 0;
	imgCt = 3;
	imgFishCt = 2;
	imgAHCt = 4;
	
	function clickitM100() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgCt) {
				thisImg = 0;
			}
			document.M100.src=Model100[thisImg];
		}
	}

	function clickitM150() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgCt) {
				thisImg = 0;
			}
			document.M150.src=Model150[thisImg];
		}
	}

	function clickitM250() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgCt) {
				thisImg = 0;
			}
			document.M250.src=Model250[thisImg];
		}
	}

	function clickitM400() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgCt) {
				thisImg = 0;
			}
			document.M400.src=Model400[thisImg];
		}
	}

	function clickitM600() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgCt) {
				thisImg = 0;
			}
			document.M600.src=Model600[thisImg];
		}
	}

	function clickitB41() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgCt) {
				thisImg = 0;
			}
			document.MB41.src=ModelB41[thisImg];
		}
	}


	function clickitB81() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgCt) {
				thisImg = 0;
			}
			document.MB81.src=ModelB81[thisImg];
		}
	}

	function clickitB40() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgCt) {
				thisImg = 0;
			}
			document.MB40.src=ModelB40[thisImg];
		}
	}


	function clickitB80() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgCt) {
				thisImg = 0;
			}
			document.MB80.src=ModelB80[thisImg];
		}
	}

	function clickitB40A() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgCt) {
				thisImg = 0;
			}
			document.MB40A.src=ModelB40A[thisImg];
		}
	}


	function clickitB80A() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgCt) {
				thisImg = 0;
			}
			document.MB80A.src=ModelB80A[thisImg];
		}
	}

	function clickitFish3() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgFishCt) {
				thisImg = 0;
			}
			document.MFish3.src=Fish3[thisImg];
		}
	}

	function clickitFish4() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgFishCt) {
				thisImg = 0;
			}
			document.MFish4.src=Fish4[thisImg];
		}
	}

	function clickitFish5() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgFishCt) {
				thisImg = 0;
			}
			document.MFish5.src=Fish5[thisImg];
		}
	}

	function clickitFish6() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgFishCt) {
				thisImg = 0;
			}
			document.MFish6.src=Fish6[thisImg];
		}
	}
	
	function clickit400AH() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgAHCt) {
				thisImg = 0;
			}
			document.M400AH.src=Model400AH[thisImg];
		}
	}
	
	function clickit600AH() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgAHCt) {
				thisImg = 0;
			}
			document.M600AH.src=Model600AH[thisImg];
		}
	}
	
	function clickitGunChuck() {
		if (document.images) {
			thisImg++;
			if (thisImg == imgCt) {
				thisImg = 0;
			}
			document.GunChuck.src=ModelGunChuck[thisImg];
		}
	}