/* Copyright: Martin J. Marsh, July 2007 - www.ecomarshosgame.com - Individual use permissions only. This version updated 23rd Oct 2007. */ var basecount = 0; var anynumber = -1; var stylselec = ""; var imgarr = new Array(7); imgarr[0] = "Graphextr/homeicon5.gif"; imgarr[1] = "Graphextr/Mainth01.gif"; imgarr[2] = "Graphextr/Projdesgs.gif"; imgarr[3] = "Graphextr/Srchwherz.gif"; imgarr[4] = "Graphextr/Ecitnhtml.gif"; imgarr[5] = "Graphextr/F3tech.gif"; imgarr[6] = "Graphextr/pigeopost.gif"; var oimarr = new Array(7); oimarr[0] = "Graphextr/homeicon2.gif"; oimarr[1] = "Graphextr/Mainth02.gif"; oimarr[2] = "Graphextr/Projdesg2.gif"; oimarr[3] = "Graphextr/Srchwher2.gif"; oimarr[4] = "Graphextr/Ecitnhtm2.gif"; oimarr[5] = "Graphextr/F3tech2.gif"; oimarr[6] = "Graphextr/pigeopos2.gif"; function siteGui(){ if (basecount > 0){ return; } miniviewr = document.getElementById("siteguide"); miniviewr.style.display = "block"; setTimeout('miniviewr.style.display = "none"', 8000); basecount++ } function linksimg(highl){ anynumber = parseInt(highl); stylselec = imgarr[anynumber]; var thforml = document.getElementById(anynumber); thforml.src = stylselec; } function offimgl(highl){ anynumber = parseInt(highl); stylselec = oimarr[anynumber]; var thforml = document.getElementById(anynumber); thforml.src = stylselec; }