// insert the line below where the picture / video duo should pop up
//<a target="_blank" id="VidSrc" name="VidSrc" ><img align="middle" name="imgSrc" id="imgSrc"></a>
// <a href="javascript:next()">next</a>
// <a href="javascript:prev()">prev</a>

//set the size of numPics to the number of pictures




  

  
  // repeat this line for every picture/video duo on the site 	 
  //myImg[4]="/myPic.jpg"; 
  //myVid[4]= "/default/videos/8/"
  
  

var ii = 0;

// Create function to load image
function loadImg(){
  document.imgSrc.src =myImg[ii];
  //document.getElementById('VidSrc').href = myVid[ii];
}

function loadtxt(num){
  document.getElementById("Photo_Comments").innerHTML=mytxt[num]
  //document.getElementById('VidSrc').href = myVid[ii];
}


// Create link function to switch image backward
function prev(){
  if(ii==0){
    var l = myImg.length-1;
	ii=l;
  } else {
    var l = ii-=1;
  }
  document.imgSrc.src = myImg[l];
  loadtxt(l)
}


// Create link function to switch image forward
function next(){
  if(ii == myImg.length - 1 ){
    var l = 0;
	ii=l;
  } else {
    var l = ii+=1;
  }
  document.imgSrc.src =myImg[l];
  loadtxt(l)

}

function viewVideo(){
   var l = ii  
  window.open(myVid[l],  'Option', 'dependent =yes, width=425, height=380, titlebar=no,scrollbars=yes,status=yes,resizable=no');


  
}





