// 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/d2_homeless_renee.jpg','Homeless Count','Introducing himself simply as &ldquo;Jeff,&rdquo; Commissioner Koons interviews Riviera Beach homeless resident Renee.'],
	['/newsroom/0109/_images/d2_homeless_mayor.jpg','Homeless Count','Riviera Beach Mayor Thomas Master and Commissioner Koons'],
	['/newsroom/0109/_images/d2_homeless_survey.jpg','Homeless Count','The surveys help determine the level of federal funding the county is eligible to receive.'],
	['/newsroom/0109/_images/d2_homeless_HOT.jpg','Homeless Count','Homeless Outreach Team (HOT) members and volunteers from Goodwill found the group at St. George&rsquo;s generally very cooperative.'],
	['/newsroom/0109/_images/d2_homeless_individuals.jpg','Homeless Count','The soup kitchen serves 50 to 100 individuals each evening.']
]

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);
}

