// 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/0708/_images/d3_DSC03079.jpg','Commissioner kanjian','At 9:30 a.m., the Board meeting started with Michael leading the Commissioners and members of the public in the Invocation and Pledge of Allegiance.'],
	['/newsroom/0708/_images/d3_DSC03069.jpg','Commissioner Kanjian','At age 18, Michael is a recent honors graduate in the top five percent of his class at Park Vista High School and he has plans to attend Palm Beach Community College starting in August. Michael was nominated for a Pathfinder Scholarship award and finished third in a Student Congress speech club competition.']
]

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);
}

