
function pagevariable() {
<!-- Begin
var dir = location.href.substring(0,location.href.lastIndexOf('/')+1);
var url = location.href.substring(dir.length,location.href.length+1);
return url ;
    		}
			
function  subdir(){
var dirshorter = location.href.substring(0,location.href.lastIndexOf('/'));
var subdir = dirshorter.substring( dirshorter.lastIndexOf('/')+1,dirshorter.length+1);
return subdir ;

}

function uareonxpage() {
 var url;
	  url=pagevariable();
	  subdir = subdir();
if (url=="index.php") {document.all.home.style.backgroundColor="#F0B432"}
 else  if (url=="ourkayaks.php") {document.all.ourkayaks.style.backgroundColor="#F0B432"}
  else  if (url=="fishing.php") {document.all.fishing.style.backgroundColor="#F0B432"}
   else  if (url=="accessories.php" || url=="accessories_windpaddle.php") {document.all.accessories.style.backgroundColor="#F0B432"}
  else  if (subdir=="kayakspecs") {document.all.kayakspecs.style.backgroundColor="#F0B432"}
 else if (url=="testimonial.php") {document.all.testimonial.style.backgroundColor="#F0B432"}
  else if (url=="specials.php") {document.all.specials.style.backgroundColor="#F0B432"}
else if (url=="contactus.php") {document.all.contactus.style.backgroundColor="#F0B432"}
else if (url=="customercare.php" ) {document.all.customercare.style.backgroundColor="#F0B432"}
else if (url=="tuition.php") {document.all.tuition.style.backgroundColor="#F0B432"}
else return null ;
		}


