<!--
// (C) 2003 by CodeLifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 5000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this
var showHot = false;       // don't change this

// Specify the image files...
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = 'images/photos/europe2005/img_02.jpg';
Picture[2]  = 'images/photos/europe2005/img_03.jpg';
Picture[3]  = 'images/photos/europe2005/img_04.jpg';
Picture[4]  = 'images/photos/europe2005/img_05.jpg';
Picture[5]  = 'images/photos/europe2005/img_06.jpg';
Picture[6]  = 'images/photos/europe2005/img_07.jpg';
Picture[7]  = 'images/photos/europe2005/img_08.jpg';
Picture[8]  = 'images/photos/europe2005/img_09.jpg';
Picture[9]  = 'images/photos/europe2005/img_10.jpg';
Picture[10]  = 'images/photos/europe2005/img_11.jpg';
Picture[11]  = 'images/photos/europe2005/img_12.jpg';
Picture[12]  = 'images/photos/europe2005/img_13.jpg';
Picture[13]  = 'images/photos/europe2005/img_14.jpg';
Picture[14]  = 'images/photos/europe2005/img_15.jpg';
Picture[15]  = 'images/photos/europe2005/img_16.jpg';
Picture[16]  = 'images/photos/europe2005/img_17.jpg';
Picture[17]  = 'images/photos/europe2005/img_18.jpg';
Picture[18]  = 'images/photos/europe2005/img_19.jpg';
Picture[19]  = 'images/photos/europe2005/img_01.jpg';

// Specify the Captions...
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "BGMC matching in Berlin&rsquo;s Christopher Street Day parade.";
Caption[2]  = "Performing at the Siegess&auml;ule monument stage in Berlin.";
Caption[3]  = "Reuben and Steve present Mayor Wowereit with a proclamation from Boston Mayor Menino.";
Caption[4]  = "The Chorus with Berlin&rsquo;s Christopher Street Day hostess Uta Lemper.";
Caption[5]  = "The Chorus before its concert at Berlin&rsquo;s Haus der Kulturen der Welt.";
Caption[6]  = "Backstage before the Christopher Street Day performance for a crowd of 700,000 in Berlin.";
Caption[7]  = "The view from the stage &mdash; the crowd stretched for a mile all the way to Berlin's Brandenberg Gate.";
Caption[8]  = "The protest over the BGMC&rsquo;s Poland concert makes the front page of the paper.";
Caption[9]  = "Police line keeping the protesters from the stage entrance at Wroclaw's Philharmonic Hall.";
Caption[10]  = "Protest by the right wing political party League of Polish Families.";
Caption[11]  = "More than two dozen armed police kept 24-hour guard over the Chorus.";
Caption[12]  = "Pro-gay students held a counter-protest in front of the hall.";
Caption[13]  = "Inside the hall, a dozen news crews from across Poland filmed the BGMC&rsquo;s rehearsal.";
Caption[14]  = "The Chorus on stage in Poland, performs to a packed house.";
Caption[15]  = "In Prague, a poster for the BGMC concert at the world famous Rudolfinum in Prague.";
Caption[16]  = "BGMC on stage in Dvorak Hall at the Rudolfinum.";
Caption[17]  = "Another shot from Dvorak Hall in Prague.";
Caption[18]  = "BGMC members sightseeing in beautiful Prague.";
Caption[19]  = "The Chorus at Berlin Pride (called &ldquo;Christopher Street Day&rdquo;) with Berlin&rsquo;s openly gay mayor Klaus Wowereit.";

// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function control(how){
if (showHot){
if (how=="H") jss = 1;
if (how=="F") jss = jss + 1;
if (how=="B") jss = jss - 1;
if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}}
//-->