/* 
  ================================================
  PVII Uberlink Script
  Copyright (c) 2006 Project Seven Development
  www.projectseven.com
  Version: 1.0.0
  ================================================
*/
function Uberlink(cl,d, homeloc){
	var i,ob,tA,h=document.location.href;
	if(document.getElementById){
		ob=(d)?document.getElementById(d):document;
		if(ob){
			tA=ob.getElementsByTagName('A');
			for(i=0;i<tA.length;i++){
				if(tA[i].href==h){
				tA[i].className=cl;}
				else if (h == homeloc){
					tA[0].className = cl;}
			}
		}
	}
}
