
var num=0;
imgArray2 = new Array();
imgArray2[0] = "Images/Photos_07/1.jpg";
imgArray2[1] = "Images/Photos_07/2.jpg";
imgArray2[2] = "Images/Photos_07/3.jpg";
imgArray2[3] = "Images/Photos_07/4.jpg";
imgArray2[4] = "Images/Photos_07/5.jpg";
imgArray2[5] = "Images/Photos_07/6.jpg";
imgArray2[6] = "Images/Photos_07/7.jpg";
imgArray2[7] = "Images/Photos_07/8.jpg";
imgArray2[8] = "Images/Photos_07/9.jpg";
imgArray2[9] = "Images/Photos_07/10.jpg";

imgArray2[10] = "Images/Photos_07/11.jpg";
imgArray2[11] = "Images/Photos_07/12.jpg";
imgArray2[12] = "Images/Photos_07/13.jpg";
imgArray2[13] = "Images/Photos_07/14.jpg";
imgArray2[14] = "Images/Photos_07/15.jpg";
imgArray2[15] = "Images/Photos_07/16.jpg";
imgArray2[16] = "Images/Photos_07/17.jpg";
imgArray2[17] = "Images/Photos_07/18.jpg";
imgArray2[18] = "Images/Photos_07/19.jpg";
imgArray2[19] = "Images/Photos_07/20.jpg";

imgArray2[20] = "Images/Photos_07/21.jpg";
imgArray2[21] = "Images/Photos_07/22.jpg";
imgArray2[22] = "Images/Photos_07/23.jpg";
imgArray2[23] = "Images/Photos_07/24.jpg";
imgArray2[24] = "Images/Photos_07/25.jpg";
imgArray2[25] = "Images/Photos_07/26.jpg";
imgArray2[26] = "Images/Photos_07/27.jpg";
imgArray2[27] = "Images/Photos_07/28.jpg";
imgArray2[28] = "Images/Photos_07/29.jpg";
imgArray2[29] = "Images/Photos_07/30.jpg";

imgArray2[30] = "Images/Photos_07/31.jpg";
imgArray2[31] = "Images/Photos_07/32.jpg";
imgArray2[32] = "Images/Photos_07/33.jpg";
imgArray2[33] = "Images/Photos_07/34.jpg";
imgArray2[34] = "Images/Photos_07/35.jpg";
imgArray2[35] = "Images/Photos_07/36.jpg";
imgArray2[36] = "Images/Photos_07/37.jpg";
imgArray2[37] = "Images/Photos_07/38.jpg";
imgArray2[38] = "Images/Photos_07/39.jpg";
imgArray2[39] = "Images/Photos_07/40.jpg";

imgArray2[40] = "Images/Photos_07/41.jpg";
imgArray2[41] = "Images/Photos_07/42.jpg";
imgArray2[42] = "Images/Photos_07/43.jpg";
imgArray2[43] = "Images/Photos_07/44.jpg";
imgArray2[44] = "Images/Photos_07/45.jpg";
imgArray2[45] = "Images/Photos_07/46.jpg";
imgArray2[46] = "Images/Photos_07/47.jpg";
imgArray2[47] = "Images/Photos_07/48.jpg";





function slideshow2(slide_num) {
document.getElementById('mypic2').src=imgArray2[slide_num];
  
  
}

function slideshowUp2() {
  num++;
  num = num % imgArray2.length;
  slideshow2(num);
}

function slideshowBack2() {
  num--;
  if (num < 0) {num=imgArray2.length-1;}
  num = num % imgArray2.length;
  slideshow2(num);
}

function fullSize() {
  window.open(imgArray2[num])
}
