//error fix
function stopErrors() {
return true;
}
window.onerror = stopErrors;


//side navigation
if (document.images != null)
  
{
ontop = new Array (5); offtop = new Array (5);
for (i=1;i<5;i++) {ontop[i] = new Image; offtop[i] = new Image;}

ontop[1].src="/images/nav/home_.gif";
ontop[2].src="/images/nav/about_.gif";
ontop[3].src="/images/nav/training_.gif";
ontop[4].src="/images/nav/membership_.gif";

offtop[1].src="/images/nav/home.gif";
offtop[2].src="/images/nav/about.gif";
offtop[3].src="/images/nav/training.gif";
offtop[4].src="/images/nav/membership.gif";
}
function top_on(n) {if (document.images != null) {document.images["i"+(n+"")].src=ontop[n].src;}}
function top_off(n) {if (document.images != null) {document.images["i"+(n+"")].src=offtop[n].src;}}
