/* 
  ================================================
  PVII Uberlink Script
  Copyright (c) 2006 Project Seven Development
  www.projectseven.com
  Version: 1.0.0
  ================================================
*/
// Code below replaces adding code to body tag - <body onLoad="initialize(), showMap()">
// This code allows loading more than one onload commands at once

// Loads:
// 1. Uberlink Menu Navigation Current Page indicator



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;
}}}}}

// Begin Code to load uberlink script when unable to place code w/i the body tag
// <body onload="P7_Uberlink('uberlink','navigation-1'); P7_Uberlink('uberlink','VertNav');">
 window.onload=function(){
 P7_Uberlink('uberlink','navigation-1');
 P7_Uberlink('uberlink','VertNav');
// initialize line below was added just for the google map to display
// initialize();
 }
 // end of P7 Uberlink code
 


