//inside_javascript.js

	if (document.images) {
		borescopes_off = new Image; borescopes_off.src = "/images/in_nav_borescopes_off.gif";
		borescopes_on = new Image; borescopes_on.src = "/images/in_nav_borescopes_on.gif";
		scope_off = new Image; scope_off.src = "/images/in_nav_scope_off.gif";
		scope_on = new Image; scope_on.src = "/images/in_nav_scope_on.gif";
		video_off = new Image; video_off.src = "/images/in_nav_video_off.gif";
		video_on = new Image; video_on.src = "/images/in_nav_video_on.gif";
		whatsnew_off = new Image; whatsnew_off.src = "/images/in_nav_whatsnew_off.gif";
		whatsnew_on = new Image; whatsnew_on.src = "/images/in_nav_whatsnew_on.gif";
		ordering_off = new Image; ordering_off.src = "/images/in_nav_ordering_off.gif";
		ordering_on = new Image; ordering_on.src = "/images/in_nav_ordering_on.gif";
		applications_off = new Image; applications_off.src = "/images/in_nav_applications_off.gif";
		applications_on = new Image; applications_on.src = "/images/in_nav_applications_on.gif";
		about_off = new Image; about_off.src = "/images/in_nav_about_off.gif";
		about_on = new Image; about_on.src = "/images/in_nav_about_on.gif";
	}

	function imageSwap(location,imageName){
		if(document.images){
			document.images[location].src=eval(imageName+'.src');
		}
	}

