conBrowser=1;
  switch1on  = new Image();  switch1on.src  = '/global/images/home1.gif';
  switch1off = new Image();  switch1off.src = '/global/images/home0.gif';
  switch2on  = new Image();  switch2on.src  = '/global/images/about1.gif';
  switch2off = new Image();  switch2off.src = '/global/images/about0.gif';
  switch3on  = new Image();  switch3on.src  = '/global/images/inventory1.gif';
  switch3off = new Image();  switch3off.src = '/global/images/inventory0.gif';
  switch4on  = new Image();  switch4on.src  = '/global/images/sell1.gif';
  switch4off = new Image();  switch4off.src = '/global/images/sell0.gif';
  switch5on  = new Image();  switch5on.src  = '/global/images/sold1.gif';
  switch5off = new Image();  switch5off.src = '/global/images/sold0.gif';
  switch6on  = new Image();  switch6on.src  = '/global/images/faq1.gif';
  switch6off = new Image();  switch6off.src = '/global/images/faq0.gif';
  switch7on  = new Image();  switch7on.src  = '/global/images/testimonials1.gif';
  switch7off = new Image();  switch7off.src = '/global/images/testimonials0.gif';
  switch8on  = new Image();  switch8on.src  = '/global/images/newsletter1.gif';
  switch8off = new Image();  switch8off.src = '/global/images/newsletter0.gif';
  switch9on  = new Image();  switch9on.src  = '/global/images/links1.gif';
  switch9off = new Image();  switch9off.src = '/global/images/links0.gif';
  switch10on  = new Image();  switch10on.src  = '/global/images/contact1.gif';
  switch10off = new Image();  switch10off.src = '/global/images/contact0.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;
		}
	}
