//////////
//For Mouseovers///////


///WORDS SECTOR JAVASCRIPT

  if (document.images)   //checks the object images which designates a compatible browser
   {

 //    btnsrc = "http://www.idealreal.com/imgbtn/";

	btnsrc = "../imgbtn/";

	intro = '<p align="center">You Are Currently In Sector:<br>';

	sector = "main";
	button = 'pic1';
	home = '../index.htm';


	pic1on= new Image;
	pic1on.src=btnsrc + sector + "33.gif";

	pic1off= new Image;
	pic1off.src=btnsrc + sector + "22.gif";

   }

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

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