<!--
// - - - - - - - - - - - document globals
var supported = 0;

 button1txt = "Click here to see our firm profile.";
 button2txt = "Click here to see our objectives.";
 button3txt = "Click here to see our services provided.";
 button4txt = "Click here to see our commitment.";
 button5txt = "Click here to our philosophies.";
 button6txt = "Click here to see our partners.";
 button7txt = "Click here to email us."
 button8txt = "Click here to return to the home page."
// - - - - - - - - - - - function definitions

function Init()
{ if(document.images)
       {     supported = 1; 
             //- - - - - - allocate memory for Images & then load them

             //- - - - - - "button up" images
	     button1up = new Image(); 
                  button1up.src = "images/btn_ifirmblk.gif";
             button2up = new Image(); 
                  button2up.src = "images/btn_iobjectiveblk.gif";
             button3up = new Image(); 
                  button3up.src = "images/btn_iservicesblk.gif";
             button4up = new Image();
                  button4up.src = "images/btn_icommitblk.gif";
	     button5up = new Image();
                  button5up.src = "images/btn_iphilblk.gif";
	     button6up = new Image();
                  button6up.src = "images/btn_ipartnerblk.gif";
	     button7up = new Image();
                  button7up.src = "images/btn_iemailblk.gif";
	     button8up = new Image();
                  button8up.src = "images/btn_ihomeblk.gif";
	     
	    

     
             //- - - - - - "button down" images
	     button1down = new Image();
                 button1down.src = "images/btn_ifirmblue.gif";
             button2down = new Image();
                 button2down.src = "images/btn_iobjectiveblue.gif";
             button3down = new Image(); 
                 button3down.src = "images/btn_iservicesblue.gif";
             button4down = new Image();
                 button4down.src = "images/btn_icommitblue.gif";
	     button5down = new Image();
                 button5down.src = "images/btn_iphilblue.gif";
	     button6down = new Image();
                 button6down.src = "images/btn_ipartnerblue.gif";
	     button7down = new Image();
                 button7down.src = "images/btn_iemailblue.gif";
	     button8down = new Image();
                 button8down.src = "images/btn_ihomeblue.gif";
	    
	    
        }
}
Init();

function img_xchg(ImageName)
{  if(supported)
      { NewImage  = eval(ImageName + "down.src");
         document [ImageName].src = NewImage;
         ButtonText= eval(ImageName + "txt")
         parent.status = ButtonText;
      }
   else
      { ButtonText= eval(ImageName + "txt")
        parent.status = ButtonText;
      }
   return;
}

function img_rstr(ImageName)
{ if(supported)
     { RestoreImage = eval(ImageName + "up.src");
       document [ImageName].src = RestoreImage;
       parent.status ="";
      }
  else 
      { parent.status ="";  }
  return;
}

// -->

