// JavaScript Document
blnImg = document.images
function Create(Name) {
  Rollovers[Name]=new Rollover(Name);
}
function Rollover(Name) {
    this.name       = Name;
	this.btnImg     = new Image;
	this.ovrImg     = new Image;
	this.btnImg.src = "images/btn_"+Name+".gif";
	this.ovrImg.src = "images/ovr_"+Name+".gif";
}	
function Btn(Name) {
  if (blnImg) {
    document[Name].src = Rollovers[Name].btnImg.src;
  }
}
function Ovr(Name) {
  if (blnImg) {
    document[Name].src = Rollovers[Name].ovrImg.src;
  }
} 
if (blnImg) {
      Rollovers = new Object;
	  Create("business");
	  Create("education");
	  Create("entertainment");
	  Create("golfing");
	  Create("culture");
	  Create("housing");
	  Create("healthcare");
	  Create("outdoor");
	  Create("active");
	  Create("transportation");
	  Create("contact");
}
