// 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/1009/_images/d3_teen_1.jpg','Teen Center','Commissioner Shelley Vana and Mayor Davis cut the ribbon at the new teen center.'],
	['/newsroom/1009/_images/d3_teen_2.jpg','Teen Center','Pictured above (l to r): Councilmember Doug Gunther, Councilmember Joni Brinkman, Vice Mayor Patti Waller, County Commissioner Shelley Vana, Mayor Pro Tem Bev Smith, and Mayor John M. "Mike" Davis.'],
	['/newsroom/1009/_images/d3_teen_3.jpg','Teen Center','Commissioner Vana and council members take a moment for a photo while they tour the inside of the teen center.'],
	['/newsroom/1009/_images/d3_teen_4.jpg','Teen Center','Commissioner Vana talks with council members outside the Village of Palm Springs Teen 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);
}

