   theDetails= new Array()
   theDetails[0]= "<p> Locate the easiest way to access U.S. 101. <br />U.S. 101 runs North and South, give and take a few curves, through Marin County.</p>";
   theDetails[1]= "<p> Once you cross the bridge (10-15 minutes) exit on Sir Francis Drake and <br /> go west through San Anselmo into Downtown Fairfax (10-15 minutes). <br />Follow the directions for downtown Fairfax below.</p>";
   theDetails[2]= "<p>  Take Interstate 580, crossing the Richmond - San Rafael bridge to 101 North and <br />exit at Central San Rafael.<br /> Make a left onto Third Street. Follow Third Street / Red Hill Avenue into San Anselmo and take a right on Sir Francis Drake and<br /> follow it west into downtown Fairfax. <br />Follow the directions for downtown Fairfax below.</p>";
   theDetails[3]= "<p>Exit at Central San Rafael and take a right onto Third Street,<br />follow Third Street / Red Hill Avenue into San Anselmo and <br />take a right on Sir Francis Drake and follow it west into downtown Fairfax. <br />Follow the directions for downtown Fairfax below.</p>";
   theDetails[4]= "<p>From Interstate 80, take California 37 to U.S. 101.<br />Head south on U.S. 101 towards San Rafael. <br />Exit at Central San Rafael and take a right onto Third Street, <br />follow Third Street / Red Hill Avenue into San Anselmo and <br />take a right on Sir Francis Drake and follow it west into downtown Fairfax. <br />Follow the directions for downtown Fairfax below.</p>";
theDiv= new Array("pd0","pd1","pd2","pd3","pd4");
theIm= new Array("pd0i","pd1i","pd2i","pd3i","pd4i");
theCue = new Array(0,0,0,0,0);
function showDet(wh){
this.wh=wh;

for(i=0;i< 5;i++){
if(theDiv[i]==wh && theCue[i]==0){
showEm(i);
}else{
hideEm(i);
}
}
}
function showEm(i){
var theDet=theDetails[i];
var theD=theDiv[i];
var theI=theIm[i];
theCue[i]=1;
document.getElementById(theI).src="./images/pntDown.gif";
document.getElementById(theD).innerHTML=theDet;
}
function hideEm(i){
var theD=theDiv[i];
var theI=theIm[i];
if(theCue[i]==0){
return;
}
theCue[i]=0;
document.getElementById(theI).src="./images/pntRight.gif";
document.getElementById(theD).innerHTML="";

}