conBrowser=1;
  switch1on  = new Image();  switch1on.src  = '/images/home2.gif';
  switch1off = new Image();  switch1off.src = '/images/home.gif';
  switch2on  = new Image();  switch2on.src  = '/images/aboutash2.gif';
  switch2off = new Image();  switch2off.src = '/images/aboutash.gif';
  switch3on  = new Image();  switch3on.src  = '/images/principals2.gif';
  switch3off = new Image();  switch3off.src = '/images/principals.gif';
  switch4on  = new Image();  switch4on.src  = '/images/services2.gif';
  switch4off = new Image();  switch4off.src = '/images/services.gif';
  switch4aon  = new Image();  switch4aon.src  = '/images/projects2.gif';
  switch4aoff = new Image();  switch4aoff.src = '/images/projects.gif';
  switch5on  = new Image();  switch5on.src  = '/images/press2.gif';
  switch5off = new Image();  switch5off.src = '/images/press.gif';
  switch6on  = new Image();  switch6on.src  = '/images/careers2.gif';
  switch6off = new Image();  switch6off.src = '/images/careers.gif';
  switch7on  = new Image();  switch7on.src  = '/images/locations2.gif';
  switch7off = new Image();  switch7off.src = '/images/locations.gif';
  switch8on  = new Image();  switch8on.src  = '/images/associations2.gif';
  switch8off = new Image();  switch8off.src = '/images/associations.gif';
  switch9on  = new Image();  switch9on.src  = '/images/contact2.gif';
  switch9off = new Image();  switch9off.src = '/images/contact.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;
		}
	}

