// 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/1108/_images/d6_Santamaria.jpg','District 6 Forum','Commissioner Santamaria offers opening comments.'],
	['/newsroom/1108/_images/d6_new_state_attorney.jpg','District 6 Forum','(l-r) incoming State Attorney Mike McAuliffe, incoming Supervisor of Elections Susan Bucher, Commissioner Shelley Vana, state Sen. Dave Aronberg and Commissioner Santamaria.'],
	['/newsroom/1108/_images/d6_Forum.jpg','District 6 Forum','About 50 west area residents attended the forum.'],
	['/newsroom/1108/_images/d6_Terry_Timberlake.jpg','District 6 Forum','Terry Timberlake with the Folke Peterson Wildlife Center and her friend, Buddy, a 2-year-old opossum.'],
	['/newsroom/1108/_images/d6_Bucher.jpg','District 6 Forum','Former state Rep. Susan Bucher will be sworn as the county&rsquo;s new Supervisor of Elections in January.'],
	['/newsroom/1108/_images/d6_McAuliffe.jpg','District 6 Forum','State Attorney-elect Mike McAuliffe']
]

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);
}

