// 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/0709/_images/d5_pic-1_sholarship.jpg', 'D5 Scholarships','Commissioner Aaronson poses with (from L to R) Inita Knox, Stephanie Gopa and Elizat Baialieva'],
	['/newsroom/0709/_images/d5_Pic-2_scholarship.jpg','D5 Scholarships','Dr. Sandra Richmond, Vice-Chair of The School District of Palm Beach County, shared memories of the late Judge Jeffrey A. Winikoff during the ceremony.'],
	['/newsroom/0709/_images/d5_Pic-3_scholarship.jpg','D5 Scholarships','Stephanie Gopa and Inita Knox listened during the ceremony.'],
	['/newsroom/0709/_images/d5_Pic-4_scholarship.jpg','D5 Scholarships','Elizat Baialieva accepts her award from Dr. Sandra Richmond.']
]

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);
}

