conBrowser=1;
  switch1on  = new Image();  switch1on.src  = '/images/aboutmovex-o.gif';
  switch1off = new Image();  switch1off.src = '/images/aboutmovex.gif';
  switch2on  = new Image();  switch2on.src  = '/images/driver-o.gif';
  switch2off = new Image();  switch2off.src = '/images/driver.gif';
  switch3on  = new Image();  switch3on.src  = '/images/team-o.gif';
  switch3off = new Image();  switch3off.src = '/images/team.gif';
  switch4on  = new Image();  switch4on.src  = '/images/photgallery-o.gif';
  switch4off = new Image();  switch4off.src = '/images/photgallery.gif';
  switch5on  = new Image();  switch5on.src  = '/images/schedule-o.gif';
  switch5off = new Image();  switch5off.src = '/images/schedule.gif';
  switch6on  = new Image();  switch6on.src  = '/images/race-o.gif';
  switch6off = new Image();  switch6off.src = '/images/race.gif';
  switch7on  = new Image();  switch7on.src  = '/images/gear-o.gif';
  switch7off = new Image();  switch7off.src = '/images/gear.gif';


function HighLight(musswitch) {
	if (conBrowser) {
		switchnavn = eval(musswitch + "on");
      		document [musswitch].src = switchnavn.src;
    		}
  	}

function UndoHighLight(musswitch) {
	if (conBrowser) {
		switchnavn = eval(musswitch + "off");
		document [musswitch].src = switchnavn.src;
		}
	}
