// 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/1008/_images/d6_santamaria_forum.jpg','District 6 Community Forum','Commissioner Santamaria welcomed guests at the monthly forum.'],
	['/newsroom/1008/_images/d6_vanarnam_forum.jpg','District 6 Community Forum','Assistant County Administrator Jon Van Arnam explained the county&rsquo;s 10-year Plan to End Homelessness'],
	['/newsroom/1008/_images/d6_claudiatuck_forum.jpg','District 6 Community Forum','Claudia Tuck,  Director of the Division of Human Services, explained the variety of services  the county provides for the homeless.']
]

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);
}

