// 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/Commissioner-Aaronson.jpg','Commissioner Aaronson','Commissioner Aaronson discusses the importance of hurricane preparedness.'],
	['/newsroom/0708/_images/Charles-Tear.jpg','Charles Tear','Emergency Management Director Charles Tear holds up the 2008 Hurricane Guide to discuss the importance of reading the publication prior to the storm.'],
  ['/newsroom/0708/_images/Captain-Don-Delucia.jpg','Captain Don Delucia','Captain Don Delucia, Public Information Officer for Palm Beach County Fire Rescue, talks about the importance of fire safety.'],
   ['/newsroom/0708/_images/EOC-guests.jpg','Residents','About 40 residents attended the event at the Palm Beach County  Emergency Operations Center.'],
    ['/newsroom/0708/_images/Vince-Bonvento.jpg','Vince Bonvento','Assistant County Administrator Vince Bonvento discusses the County Emergency Response Disaster Plan.']
]

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);
}

