// 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/1009/_images/d6_Santamaria_100809.jpg', 'Glades Forum','Commissioner Santamaria'],
	['/newsroom/1009/_images/d6_Jerauld.jpg', 'Glades Forum','Fire Rescue Chief Steve Jerauld'],
	['/newsroom/1009/_images/d6_Jackson.jpg', 'Glades Forum','Western Communities Liaison Michael E. Jackson'],
	['/newsroom/1009/_images/d6_group-shot.jpg','Glades Forum','Brian Gibbons, administrator of the new Lakeside Medical Center describes some of the hospital&rsquo;s state-of-the-art equipment and facilities. Listening intently (l-r) are Ruth Moguillansky-DeRose and Houston Tate of the PBC Office of Community Revitalization, PBSO Lt. Mike Morris, PBC Fire Rescue Chief Steve Jerauld, Pahokee Mayor Wayne Whitaker, South Bay Mayor Shirley Walker-Turner, PBCC Provost Dr. Marcia Hardney, community activist Jermaine Webb and Belle Glade Mayor Steve Wilson.']
]

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);
}
