// 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/0409/_images/d6_WP_ribbon-cutting.jpg','New Western Parkway Opens','Cutting the ribbon (l-r) are County Engineer George Webb, Commission Chairman Jeff Koons, Indian Trail Improvement District Supervisors Carlos Enriquez, Michelle Damone, Mike Erickson and Carol Jacobs, Royal Palm Beach Village Council members David Swift, Mayor David Lodwick, Fred Pinto, Marge Webster and Matty Mattioli, Commissioner Jess Santamaria and County Administrator Bob Weisman.'],
	['/newsroom/0409/_images/d6_WP_Webb-speaking.jpg','New Western Parkway Opens','County Engineer George Webb said the new bypass road will take thousands of daily traffic trips off of congested village roads.'],
	['/newsroom/0409/_images/d2_WP_Koons-speaking.jpg','New Western Parkway Opens','Commissioner Jeff Koons welcomes invited guests to the long-awaited opening of Western Parkway.'],
	['/newsroom/0409/_images/d6_WP_Bob-and-Brad-driving-off.jpg','New Western Parkway Opens','County Administrator Bob Weisman and Assistant County Administrator Brad Merriman set the pace on the new roadway.'],
	['/newsroom/0409/_images/d6_WP_Santamaria-speaking.jpg','New Western Parkway Opens','Commissioner Santamaria said one long-range goal is to extend Western Parkway all the way to Northlake Boulevard.']
]

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);
}

