// 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/d6_Santamaria-3.jpg','Press Conference Max Planck Tunnel','Commissioner Santamaria addresses the audience and introduces Dr. Claudia Hillinger of the Max Planck Society.'],
	['/newsroom/0908/_images/d6_Santamaria-group.jpg','Press Conference Max Planck Tunnel','Pictured above (l to r):  Fabiola Brumley, Palm Beach County Market President, Bank of America; City of West Palm Beach Mayor Lois Frankel; Dr. Claudia Hillinger of the Max Planck Society; School Board of Palm Beach County Superintendent Art Johnson; County Commissioner Jess R. Santamaria.  '],
	['/newsroom/0908/_images/d6_Santamaria-Hillinger-Pesquera.jpg','Press Conference Max Planck Tunnel','Pictured above (l to r):  Commissioner Santamaria; Dr. Claudia Hillinger; Jorge Pesquera, CEO and President of the Palm Beach County Convention and Visitors Bureau.'],
	['/newsroom/0908/_images/d6_ScienceTunnelLudwigshafen.jpg','Press Conference Max Planck Tunnel','The Science Tunnel was first viewed in Ludwigshafen, Germany in 2005.'],
	['/newsroom/0908/_images/d6_video.jpg','Press Conference Max Planck Tunnel','Guests at the press conference watch a video introducing the exhibit.']
]

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);
}

