Images0=new Image(435,290)
Images0.src="images/photo1.jpg"

Images1=new Image(435,290)
Images1.src="images/photo2.jpg"

Images2=new Image(435,290)
Images2.src="images/photo3.jpg"

Images3=new Image(435,290)
Images3.src="images/photo4.jpg"

Images4=new Image(435,290)
Images4.src="images/photo5.jpg"

Images5=new Image(435,290)
Images5.src="images/photo6.jpg"

Images6=new Image(435,290)
Images6.src="images/photo7.jpg"

Images7=new Image(435,290)
Images7.src="images/photo8.jpg"

Images8=new Image(435,290)
Images8.src="images/photo9.jpg"

Images9=new Image(435,290)
Images9.src="images/photo10.jpg"

Images10=new Image(435,290)
Images10.src="images/photo11.jpg"

Images11=new Image(435,290)
Images11.src="images/photo12.jpg"

var photo = new Array();
photo[0] = Images0.src;
photo[1] = Images1.src;
photo[2] = Images2.src;
photo[3] = Images3.src;
photo[4] = Images4.src;
photo[5] = Images5.src;
photo[6] = Images6.src;
photo[7] = Images7.src;
photo[8] = Images8.src;
photo[9] = Images9.src;
photo[10] = Images10.src;
photo[11] = Images11.src;

var txt_array = new Array();
txt_array[0] = "Jim Paul Miller";
txt_array[1] = "Group Jam";
txt_array[2] = "Bill";
txt_array[3] = "Gary and 'Snake'";
txt_array[4] = "Liz";
txt_array[5] = "Monty";
txt_array[6] = "Cadaliac Sky";
txt_array[7] = "Williams & Clark Expediton";
txt_array[8] = "The Claire Lynch Band";
txt_array[9] = "Rhonda Vincent & The Rage";
txt_array[10] = "Ricky Skaggs & Kentucky Thunder";
txt_array[11] = "Jamming with Bryan Simpson";


function flip(num)
 {
	
	 document.getElementById("ph").setAttribute("src",photo[num]); /* put new image in show window */   
	 textNode.data= txt_array[num];      /* update text  */
 }

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}
 
 
function hereButton()
{
	if(!document.getElementsByTagName) return false;
	if(!document.getElementById) return false;
	if(!document.getElementById("nav")) return false;
	var nv = document.getElementById("nav");
	var links = nv.getElementsByTagName("a");
    for(var i=0; i<links.length; i++)
     {
	   var linkurl = links[i].getAttribute("href");
       var currenturl = window.location.href;
       if(currenturl.indexOf(linkurl) != -1)
        {
	      links[i].className = "here";
        }
     }
}

addLoadEvent(hereButton);  