// 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/0809/_images/d7_matchmakers_taylor-podium2.jpg', 'D7 Matchmakers','Commissioner Taylor addresses the audience in the Grand Ballroom prior to the workshops.'],
	['/newsroom/0809/_images/d7_matchmakers_proclamation2.jpg','D7 Matchmakers','Mistress of Ceremony Sandra Close Turnquest (left) accepts a Board of County Commissioners&rsquo; proclamation from Commissioner Taylor that declares Aug. 4, 2009 as Palm Beach County Business Matchmaker Day.'],
	['/newsroom/0809/_images/d7_matchmakers_wide-shot.jpg','D7 Matchmakers','Participants at the 2009 Matchmaker Conference fill the Grand Ballroom of the South County Civic Center.']
]

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);
}

