// 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/0109/_images/d7_green_serving2.jpg','District 7','Commissioner  Greene served food to guests at the event.'],
	['/newsroom/0109/_images/greenevannasantamaria.jpg','District 7','Commissioner Greene chats with Commissioner Shelley Vana and Commissioner Jess Santamaria'],
	['/newsroom/0109/_images/d2_bowls.jpg','District 7','Several hand-painted, ceramic bowls were on display at the benefit.'],
	['/newsroom/0109/_images/allcommissioners_celebrity.jpg','District 7','Commissioner Addie Greene poses with Rita Clark, Executive Director of the Homeless Coalition of Palm Beach County, along with Commissioner Shelley Vana, Commissioner Jeff Koons and Commissioner Jess Santamaria.'],
	['/newsroom/0109/_images/d2_host.jpg','District 7','Channel 12/Fox News Anchorwoman Suzanne Boyd hosted the event.']
]

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);
}

