// 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/0508/_images/d7_1_Greene-speaking.jpg','PBC Tourism Summit','Commissioner Greene offers opening comments at the first-ever Tourism Summit.'],
  ['/newsroom/0508/_images/d7_2_Jorge-Pesquera.jpg','PBC Tourism Summit','Convention and Visitors Bureau President and CEO Jorge Pesquera.'],
  ['/newsroom/0508/_images/d7_3_Dale-Brill.jpg','PBC Tourism Summit','Keynote speaker Dr. Dale Brill cautions against becoming "brand blind" in the extremely competitive tourism marketplace.'],
  ['/newsroom/0508/_images/d7_4_crowd-shot.jpg','PBC Tourism Summit','About 200 industry professionals attended the day-long event.'],
  ['/newsroom/0508/_images/d7_5_Greene-audience.jpg','PBC Tourism Summit','Commissioner Greene notes that tourism has been driving our local economic engine, even before Palm Beach County became a county.']
]

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);
}

