<!--


    var val   // declare a local variable
    var index //get startpoint of value 
	var vclass
	var vindex
	var vmap
	var vpoint
	var vother
	var vreports

    val = document.location.search



    //val= val.substring(6,val.length)



    index = val.indexOf("=")

    val= val.substring(index+1,val.length)

vclass="class=\"selected\""
//vindex = vclass

if(val!=""){

 if(val=="index") {
 vindex = vclass
  //alert(val)
 }
 else if(val=="map") {
 vmap = vclass 
 }
 else if(val=="point") {
 vpoint = vclass 
 }
 else if(val=="other") {
 vother = vclass 
 } 
 else if(val=="reports") {
 vreports = vclass 
 }  
 
}
else if(val==""){
 vindex = vclass
 }


document.write('<div id="tabs4">');
document.write('<ul>');
document.write('<li><a href="index.htm?page=index" title="Background" accesskey="b" ' + vindex + '><span ' + vindex + '>Background</span></a></li>');
document.write('<li><a href="photo_map.htm?page=map" title="Photo Map" index="m" ' + vmap + '><span ' + vmap + '>Photo Map</span></a></li>');
document.write('<li><a href="fixed_point_photos.htm?page=point" title="Fixed Point Photos" ' + vpoint + '><span ' + vpoint + '>Fixed Point Photos</span></a></li>');
document.write('<li><a href="other_photos_videos.htm?page=other" title="Other Photos & Videos" ' + vother + '><span ' + vother + '>Other Photos & Videos</span></a></li>');
document.write('<li><a href="reports.htm?page=reports" title="Reports" ' + vreports + '><span ' + vreports + '>Reports</span></a></li>');
document.write('</ul>');
document.write('</div>');

//--> 