// 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/0309/_images/d6_forum_1.jpg','District 6','Commissioner Santamaria drew names from a hat to determine the order of speakers.'],
	['/newsroom/0309/_images/d6_forum_2.jpg','District 6','(l-r) Solid Waste Authority Executive Director Mark Hammond, Deputy County Administrator Verdenia Baker, Planning, Zoning &amp; Building Executive Director Barbara Alterman, Hassan Hadjimiry from Water Utilities and Morton Rose of Engineering/Roadway Production'],
	['/newsroom/0309/_images/d6_forum_3.jpg','District 6','About 80 residents attended open forum.'],
	['/newsroom/0309/_images/d6_forum_4.jpg','District 6','There were several questions about possible sites for a new landfill.'],
	['/newsroom/0309/_images/d6_forum_5.jpg','District 6','Barbara Lord questioned the way fines are issued for false alarms.'],
	['/newsroom/0309/_images/d6_forum_6.jpg','District 6','Lydia Patterson supports a Palm Beach Community College campus in Wellington.'],
	['/newsroom/0309/_images/d6_forum_7.jpg','District 6','Sandy White would like to see school buses that sit idle on weekends used for public transportation for the disabled.'],
	['/newsroom/0309/_images/d6_forum_8.jpg','District 6','Hassan Hadjimiry of the county Water Utilities Department explains how rates are set.']
]

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);
}

