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