// 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/d6_forum_group-shot.jpg','District 6','(l-r)  former County Commissioner Ken Adams, Assistant State Attorney Al Johnson, Judge Peter Evans, Sid Dinerstein, chairman of the Palm Beach County Republican Party, Commissioner Santamaria, Sheriff Ric Bradshaw and Assistant County Administrator Brad Merriman.'],
				['/newsroom/0109/_images/d6_forum_audience.jpg','District 6','More than 100 residents attended the forum.'],
				['/newsroom/0109/_images/d6_forum_santamaria.jpg','District 6','Commissioner Santamaria calls for an end to public apathy.'],
				['/newsroom/0109/_images/d6_forum_sr_mark-pafford.jpg','District 6','State Representative Mark Pafford.'],
				['/newsroom/0109/_images/d6_forum_Sid-Dinerstein.jpg','District 6','PBC Republican Party Chairman Sid Dinerstein.'],
				['/newsroom/0109/_images/d6_forum_Marty-Rogol.jpg','District 6','Marty Rogol of Leadership Palm Beach County.'],
				['/newsroom/0109/_images/d6_forum_Sheriff-Ric-Bradshaw.jpg','District 6','Sheriff Ric Bradshaw.'],
				['/newsroom/0109/_images/d6_forum_political-consultant.jpg','District 6','Richard Giorgio, political consultant.']
]

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);
}

