
if (document.images)
   {
     pic1on= new Image(150,60);
     pic1on.src="images/homeover.gif";

     pic2on= new Image(150,60);
     pic2on.src="images/aboutover.gif";

     pic3on= new Image(100,25);
     pic3on.src="images/servicesover.gif";
     
     pic4on= new Image(100,25);
     pic4on.src="images/insuranceover.gif";

     pic5on= new Image(100,25);
     pic5on.src="images/storageover.gif";
     
     pic6on= new Image(100,25);
     pic6on.src="images/galleryover.gif";
     
     pic7on= new Image(100,25);
     pic7on.src="images/contactover.gif";
     
     pic8on= new Image(100,25);
     pic8on.src="images/locationover.gif";

     pic1off= new Image(150,60);
     pic1off.src="images/home.gif";

     pic2off= new Image(150,60);
     pic2off.src="images/about.gif";

     pic3off= new Image(100,25);
     pic3off.src="images/services.gif";
     
     pic4off= new Image(100,25);
     pic4off.src="images/insurance.gif";

     pic5off= new Image(100,25);
     pic5off.src="images/storage.gif";
     
     pic6off= new Image(100,25);
     pic6off.src="images/gallery.gif";
     
     pic7off= new Image(100,25);
     pic7off.src="images/contact.gif";
     
     pic8off= new Image(100,25);
     pic8off.src="images/location.gif";


   }

function lightup(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function turnoff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }

 function disableselect(e){
 return false
 }

 function reEnable(){
 return true
 }
 

 

// JavaScript Document
function show(id) {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'block';
	}
	else if (document.layers) { // Netscape 4
		document.id.display = 'block';
	}
	else { // IE 4
		document.all.id.style.display = 'block';
	}
}
function hide(id) {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'none';
	}
	else if (document.layers) { // Netscape 4
		document.id.display = 'none';
	}
	else { // IE 4
		document.all.id.style.display = 'none';
	}
}

