function activeLink () {
	var loc=String(this.location);  
	loc=loc.split("/");
	loc=loc[3];
	loc=loc.split("#");
	loc=loc[0];
	if ((loc=='phone') || (loc=='dream') || (loc=='online')) {
	  loc = '';
	}
if (loc == '')  {
  document.getElementById('navbase').className = 'activepage';
  }
else {  

 for (var i=0; i < document.links.length; i++){
	var lt=String(document.links[i]);
	lt=lt.split("/");
	
	lt=lt[3];
	//lt=lt[lt.length-1].split(".");
	//lt=lt[lt.length-2]; 
  if (loc == lt && document.links[i].name == 'nav') {
   document.links[i].className = 'activepage';
      
  }
 }
}
}