// 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/0908/_images/911_commissioners-pledge.jpg','911 Commissioners Pledge','County Commissioners join local dignitaries in the pledge of allegiance. Pictured above (l to r): Hypoluxo Mayor Ken Schultz, County Commissioner  Bob Kanjian, Charles Suits, South Palm Beach Councilor Robert Gottlieb, County Commissioner Burt Aaronson.'],
	['/newsroom/0908/_images/911_chief.jpg','911 Remembrance','Pictured above (l to r):  County Commissioner Burt Aaronson, Armand Nault, Rep. Shelley Vana, Palm Beach County Fire-Rescue Chief Herman Brice.'],
	['/newsroom/0908/_images/911_audience2.jpg','911 Remembrance','The well-attended ceremony was held downtown Delray Beach.'],
	['/newsroom/0908/_images/911_taps.jpg','911 Remembrance','Taps was played toward the end of the ceremony.'],
	['/newsroom/0908/_images/911_bell.jpg','911 Remembrance','A bell from Boynton Beach Fire Rescue Engine #5 was rung to honor &ldquo;The 343.&rdquo;  Its inscription reads, &ldquo;Dedicated to those who received the final call.&rdquo;']
]

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);
}

