/* 
  ================================================
  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;
	h=trimURL(h);
	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;
}}}}}

function trimURL(url)
{
    var result;
    parts = url.split("_");
    if (parts.length > 1)
    {
        result = parts[0]+".php";
    }
    else
    {
        result = url;
    }
    
   // alert(result);
    return result;
}

