<!--
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
if (document.images) {
//Leftbar images  
  img01 = new Image();
  img01.src = "images/nav1.gif";
  img012 = new Image();
  img012.src = "images/nav1on.gif";
  img02 = new Image();
  img02.src = "images/nav2.gif";
  img022 = new Image();
  img022.src = "images/nav2on.gif";
  img03 = new Image();
  img03.src = "images/nav3.gif";
  img032 = new Image();
  img032.src = "images/nav3on.gif";
  img04 = new Image();
  img04.src = "images/nav4.gif";
  img042 = new Image();
  img042.src = "images/nav4on.gif";
  img05 = new Image();
  img05.src = "images/nav5.gif";
  img052 = new Image();
  img052.src = "images/nav5on.gif";
  img06 = new Image();
  img06.src = "images/nav6.gif";
  img062 = new Image();
  img062.src = "images/nav6on.gif";
  img07 = new Image();
  img07.src = "images/nav7.gif";
  img072 = new Image();
  img072.src = "images/nav7on.gif";
  img08 = new Image();
  img08.src = "images/nav8.gif";
  img082 = new Image();
  img082.src = "images/nav8on.gif";
  img09 = new Image();
  img09.src = "images/nav9.gif";
  img092 = new Image();
  img092.src = "images/nav9on.gif";
  img10 = new Image();
  img10.src = "images/nav10.gif";
  img102 = new Image();
  img102.src = "images/nav10on.gif";
  img11 = new Image();
  img11.src = "images/nav11.gif";
  img112 = new Image();
  img112.src = "images/nav11on.gif";
}
function OnImage(name) {
	if (document.images) {
		fullname = eval(name + "2");
		document[name].src = fullname.src;
	}
}
function OffImage(name) {
  if (document.images) {
    fullname = eval(name);
	if (fullname.complete) {
      document[name].src = fullname.src;
	}
  }
}
//-->
