// 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/0908/_images/d3_L1000123_softball.jpg','Softball Girls','Some of the younger members of the West Boynton Girls Fastpitch Softball team take the field while receiving &ldquo;high fives&rdquo; from their older team members.'],
	['/newsroom/0908/_images/d3_L1000131_softball.jpg','Softball Girls','Commissioner Bob Kanjian congratulates team members, their coaches and parents before tossing out the first pitch at Lake Charleston Park.'],
	['/newsroom/0908/_images/d3_L1000136_softball.jpg','Softball Girls','The field was filled with team members from the West Boynton Girls Fastpitch League ready to start their first game and get the big season under way.']
]

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);
}

