/* 
  ================================================
  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;
	if(ob){
	tA=ob.getElementsByTagName('A');
	for(i=0;i<tA.length;i++){
	if(tA[i].href==h
	   // The following lines added by Stellar IT Solutions (Gino) to highlight what section we are in
	   || (tA[i].innerHTML == "Weddings" && h.search(/countryclub.html$/) != -1)
	   || (tA[i].innerHTML == "Weddings" && h.search(/stanford.html$/) != -1)
	   || (tA[i].innerHTML == "Weddings" && h.search(/winecountry.html$/) != -1)
	   || (tA[i].innerHTML == "Bar / Bat Mitzvahs" && h.search(/mitzvah2.html$/) != -1)
	   || (tA[i].innerHTML == "Venues" && h.search(/select.html$/) != -1)
	   || (tA[i].innerHTML == "Venues" && h.search(/outdoor.html$/) != -1)
	   || (tA[i].innerHTML == "Venues" && h.search(/indoor.html$/) != -1)
	   || (tA[i].innerHTML == "Partners" && h.search(/caterers.html$/) != -1)
	   || (tA[i].innerHTML == "Partners" && h.search(/coordinators.html$/) != -1)
	   || (tA[i].innerHTML == "Partners" && h.search(/music.html$/) != -1)
	   || (tA[i].innerHTML == "Partners" && h.search(/florists.html$/) != -1)
	   || (tA[i].innerHTML == "Partners" && h.search(/officiants.html$/) != -1)
	  ){
	tA[i].className=cl;
        break;  // Added by Stellar IT Solutions (Gino) to stop when we have a match
}}}}}
