// 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/0609/_images/d6_17_forum_Alan-Johnson.jpg','D6 Forum','Alan Johnson heads the state attorney&rsquo;s new Public Integrity Unit'],
	['/newsroom/0609/_images/d6_17_forum_audience.jpg','D6 Forum','About 60 residents attended the forum at the Wellington Mall.'],	
	['/newsroom/0609/_images/d6_17_forum_Marge-Webster.jpg','D6 Forum','Royal Palm Beach Councilwoman Marge Webster urges residents to complain to state lawmakers about cutting the clerk &amp; comptroller&rsquo;s budget.'],
	['/newsroom/0609/_images/d6_17_forum_Santamaria-introductions.jpg','D6 Forum','Commissioner Santamaria introduces invited speakers Clerk and Comptroller Sharon Bock and Assistant State Attorney Alan Johnson.'],
	['/newsroom/0609/_images/d6_17_forum_Santamaria_report-highlights.jpg','D6 Forum','Commissioner Santamaria highlighted a number of grand jury recommendations he would like to see implemented.'],
	['/newsroom/0609/_images/d6_17_forum_Sharon-Bock.jpg','D6 Forum','Sharon Bock warned that the legislature&rsquo;s decision to remove the court records function from the clerk&rsquo;s office will cause delays and long lines for the public.']
]

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);
}
