// 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/d3_vanna_kitchen.jpg','District 3','Commissioner Shelley Vana gets ready to cook in the kitchen'],
	['/newsroom/0109/_images/greenevannasantamaria.jpg','District 3','Commissioner Vana chats with Commissioner Addie Greene and Commissioner Jess Santamaria.'],
	['/newsroom/0109/_images/d3_vanna_cooking2.jpg','District 3','Commissioner Shelley Vana assists with preparing Black Pepper and Basil Gnocchi'],
	['/newsroom/0109/_images/d2_bowls.jpg','District 3','Several hand-painted, ceramic bowls were on display at the benefit.'],
	['/newsroom/0109/_images/allcommissioners_celebrity.jpg','District 3','Commissioner Koons poses with Rita Clark, Executive Director of the Homeless Coalition of Palm Beach County, along with Commissioner Addie Greene, Commissioner Shelley Vana and Commissioner Jess Santamaria.'],
	['/newsroom/0109/_images/d2_host.jpg','District 3','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);
}

