//<![CDATA[
// 
var num=0;
imgArray = [  
 ['images/pic_1.jpg','Our Staff', 'We have a highly qualified and experienced Team of 5 Stylists that have been with us for many years.<br /><br />Most completed their training with us and have progressed to become Senior Stylists', ''],
 ['images/pic_2.jpg','Our Staff', 'We have a highly qualified and experienced Team of 5 Stylists that have been with us for many years. Most completed their training with us and have progressed to become Senior Stylists', ''],
 ['images/pic_3.jpg','Our Staff', 'We have a highly qualified and experienced Team of 5 Stylists that have been with us for many years. Most completed their training with us and have progressed to become Senior Stylists', '']
 ]
function slideshow(slide_num) {
  document.getElementById('mypic').src=imgArray[slide_num][0];
  document.getElementById('mypic').alt=imgArray[slide_num][1];
// document.getElementById("mytitl").childNodes[0].nodeValue=imgArray[slide_num][1];
  document.getElementById('mytitl').innerHTML=imgArray[slide_num][1];
// document.getElementById("mylbl1").childNodes[0].nodeValue=imgArray[slide_num][2];
  document.getElementById('mylbl1').innerHTML=imgArray[slide_num][2];
// document.getElementById("mylbl2").childNodes[0].nodeValue=imgArray[slide_num][3];
  document.getElementById('mylbl2').innerHTML=imgArray[slide_num][3];  
}
function slideshowUp() {
  num++;
  num = num % imgArray.length;
  slideshow(num);
}
function slideshowBack() {
  num--;
  if (num <0) { num = imgArray.length-1; }
  num = num % imgArray.length;
  slideshow(num);
}
function start() {
num=0;slideshow(num)
}
window.onload=start;

