// 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/0508/_images/d6_forum_A.jpg','District 6 Forum','Commissioner Santamaria repeated his call for a unified western communities.'],
  ['/newsroom/0508/_images/d6_forum_B.jpg','Disctrict 6 Forum', 'Commissioner Santamaria thanks Binks Forest Music Director Karen LaFrance for an excellent concert.'],
  ['/newsroom/0508/_images/d6_forum_C.jpg','District 6 Forum','Indian Trail Improvement District Board President Mike Erickson.'],
  ['/newsroom/0508/_images/d6_forum_D.jpg','District 6 Forum','Loxahatchee Groves Mayor Dave Browning.'],
  ['/newsroom/0508/_images/d6_forum_E.jpg','District 6 Forum','Residents were especially interested in traffic issues.'],
  ['/newsroom/0508/_images/d6_forum_F.jpg','District 6 Forum','Steve and Sandy Axelrod present a collage Sandy made for the commissioner&rsquo;s office.'],
    ['/newsroom/0508/_images/d6_forum_G.jpg','District 6 Forum','The Binks Forest Elementary School Spring Chorus delighted the audience with a rousing 35-minute performance.']
]

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);
}

