d=document;
sections = new Array("home","products","services","support","whitepapers","manual","corporate");

for (x=0; x < sections.length; x++){
  var setup = sections[x]+'on = new Image();'+sections[x]+'on.src = "/pub/images/global/nav/'+sections[x]+'_on.gif";'+sections[x]+'off = new Image();'+sections[x]+'off.src = "/pub/images/global/nav/'+sections[x]+'_off.gif";';
  eval(setup);
}

function on(which) {
   if (d.images) {
      document[which].src = eval(which + "on.src");
   }
   statusOn(which) ;
}

function off(which) {
   if (d.images) {
      document[which].src = eval(which + "off.src");
   }
   statusOff() ;
}

window.status=":: Evolution Hosting ::";

function goanchor(which){
   location.hash = which;
   void 0;
}


function statusOn(msg) {
	window.status = msg;
}

function statusOff() {
	window.status = ":: Evolution Hosting ::"
}

function breakFrames(){
   if (parent.location != self.location) {
      parent.location = self.location.href
   }
}

