// 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/0709/_images/d6_audience.jpg','D6 - Cancer Study','A standing-room-only crowd of more than 300 attended the three-hour panel discussion.'],
	['/newsroom/0709/_images/d6_health_officials.jpg', 'D6 - Cancer Study','(l-r) County Administrator Bob Weisman with Tim Bahr and Jack Long of the Florida DEP Southeast Region'],
	['/newsroom/0709/_images/d6_Santamaria-and-VIPs.jpg', 'D6 - Cancer Study', '(l-r) state Representatives Carl Domino and Joseph Abruzzo, Commissioner Santamaria and administrative assistant Chuck Suits, and state Rep. Mark Pafford.'],
	['/newsroom/0709/_images/d6_Tim-OConnor.jpg', 'D6 - Cancer Study','PBC Health Department Public Information Officer Tim O&rsquo;Connor introduces panel members.'],
	['/newsroom/0709/_images/d6_Wayne-Kinser.jpg', 'D6 - Cancer Study','Wayne Kinser was among the approximately 40 residents who addressed the panel.']
]

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);
}

