// JavaScript Document

/* 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 = [
    ['/newsroom/0708/_images/d5_dogs_02.jpg','Commissioner Aaronson','Residents entered the new facility with their four-legged friends.'],
	['/newsroom/0708/_images/d5_dogs_04.jpg','Commissioner Aaronson','West Boca Community Council President Sheri Scarborough speaks during the opening ceremony.'],
	['/newsroom/0708/_images/d5_dogs_01.jpg','Commissioner Aaronson','Commissioner Aaronson welcomes guests and their canine pals at the new park.'],
	['/newsroom/0708/_images/d5_dogs_03.jpg','Commissioner Aaronson','Canine guest &ldquo;Rocky&rdquo; plays with a friend. ']
]

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);
}

