/* idea from p7 uberlink */
function show_navsection(cl,d){
   var i,j,papa,atags,spantags,thispage=document.location.href;
   if (thispage=="http://nicolejburton.com/"){
      thispage+="index.php";
   }
   if (document.getElementById){
      papa=(d)?document.getElementById(d):document;
      if(papa){
         atags=papa.getElementsByTagName('A');
            for(i=0;i<atags.length;i++){
               if(thispage.indexOf(atags[i].href)>-1){
                  spantags=atags[i].getElementsByTagName('SPAN');
                  for(j=0;j<spantags.length;j++){
                     spantags[j].className=cl;
                  }
               }
            }
         }
      }
}
