/* 
  ------------------------------------------------
  PVII Uberlink
  Current Page Link Highlighter
  Copyright (c) 2007 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;
	if(ob){
	tA=ob.getElementsByTagName('A');
	for(i=0;i<tA.length;i++){
	if(tA[i].href==h){
	tA[i].className=cl;
}}}}}

/* 
  ------------------------------------------------
  Utility scripts
  Copyright (c) 2005-2006 Project Seven Development
  ------------------------------------------------
*/

//v1.0 by PVII -table row highlighter (dates.aspx)
//Adapted to use row background colors
function P7_rowLite(tb,cl){ 
 var g,i,x,gr;if(document.getElementById){g=document.getElementsByTagName("TABLE");
 for(x=0;x<g.length;x++){if(g[x].className&&g[x].className==tb){
 gr=g[x].getElementsByTagName("TR");if(gr){for(i=0;i<gr.length;i++){
 if(i>0){gr[i].onmouseover=function(){this.className = cl + " " + this.className;};
 gr[i].onmouseout=function(){this.className=this.className.substr(cl.length+1);};}}}}}}
}

