/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Jay M. Rumsey, OD | http://www.nova.edu/~rumsey */

var num=0;

imgArray = [
  ['images/clubhouse/Clubhouse Before 1.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse After 1.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse Before 2.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse After 2.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse Before 3.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse After 3.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse Before 4.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse After 4.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse Before 5.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse After 5.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse Before 6.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse After 6.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse Before 7.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse After 7.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse Before 8.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse After 8.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse Before 9.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse After 9.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse Before 10.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse After 10.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse After 11.jpg','Living Room',''],
  ['images/clubhouse/Clubhouse After 12.jpg','Living Room',''],
]

function slideshow(slide_num) {
  document.getElementById('mypic').src=imgArray[slide_num][0];
  document.getElementById('mypic').alt=imgArray[slide_num][1];
  document.getElementById('burns').innerHTML=imgArray[slide_num][2];
}

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);
}










