// 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/0709/_images/d6_15_forum_Comm-Santamaria.jpg', 'D6 - Comm. Forum','Commissioner Santamaria introduces a full slate of guest speakers.'],
	['/newsroom/0709/_images/d6_15_forum_Dr-Alina-Alonso.jpg','D6 - Comm. Forum','Acting PBC Health Department Director Dr. Alina Alonso said the public will be kept fully informed on any findings by state investigators.'],
	['/newsroom/0709/_images/d6_15_forum_Alan-Johnson.jpg','D6 - Comm. Forum','Assistant State Attorney Alan Johnson heads the new Public Integrity Unit.'],
	['/newsroom/0709/_images/d6_15_forum_audience.jpg', 'D6 - Comm. Forum','Approximately 100 residents, many of them from The Acreage, attended the public forum at the original Wellington Mall.'],
	['/newsroom/0709/_images/d6_15_forum_CTear_MBlakeney.jpg','D6 - Comm. Forum','Director of Emergency Management Chuck Tear and Assistant Operations Manager Mary Blakeney reminded residents of the importance of planning ahead during storm season.']
]

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);
}

