
// (C) 2002 www.CodeLifter.com
// http://www.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

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

//set corresponding urls
Picture[1]  = 'http://notrag.org/images/eventsarchive/alistairwithspadesm.jpg';
Picture[2]  = 'http://notrag.org/images/eventsarchive/amygreenhousegraphic.jpg';
Picture[3]  = 'http://notrag.org/images/eventsarchive/borisjohnson.jpg';
Picture[4]  = 'http://notrag.org/images/eventsarchive/caccdowningstweb.jpg';
Picture[5]  = 'http://notrag.org/images/eventsarchive/cakethankyou.jpg';
Picture[6]  = 'http://notrag.org/images/eventsarchive/cherrylanecemetery2009-6.jpg';
Picture[7]  = 'http://notrag.org/images/eventsarchive/climatecamp2007-9.jpg';
Picture[8]  = 'http://notrag.org/images/eventsarchive/climatemarch2007-9.jpg';
Picture[9]  = 'http://notrag.org/images/eventsarchive/climaterush280109.jpg';
Picture[10]  = 'http://notrag.org/images/eventsarchive/commonsdemobanners2.jpg';
Picture[11]  = 'http://notrag.org/images/eventsarchive/downingstreet1.jpg';
Picture[12]  = 'http://notrag.org/images/eventsarchive/downingstreet2.jpg';
Picture[13]  = 'http://notrag.org/images/eventsarchive/downingstreet3.jpg';
Picture[14]  = 'http://notrag.org/images/eventsarchive/downingstreet4.jpg';
Picture[15]  = 'http://notrag.org/images/eventsarchive/euroflash2009-7.jpg';
Picture[16]  = 'http://notrag.org/images/eventsarchive/europeandayofaction2007-11.jpg';
Picture[17]  = 'http://notrag.org/images/eventsarchive/flashmob2-170109.jpg';
Picture[18]  = 'http://notrag.org/images/eventsarchive/glastonbury2009-20.jpg';
Picture[19]  = 'http://notrag.org/images/eventsarchive/klivingstone2.jpg';
Picture[20]  = 'http://notrag.org/images/eventsarchive/make-a-noise.jpg';
Picture[21]  = 'http://notrag.org/images/eventsarchive/climaterushontherun310x.jpg';
Picture[22]  = 'http://notrag.org/images/eventsarchive/climaterushgettingready300x218.jpg';
Picture[23]  = 'http://notrag.org/images/eventsarchive/parliament.jpg';
Picture[24]  = 'http://notrag.org/images/eventsarchive/richardbriers301x.jpg';
Picture[25]  = 'http://notrag.org/images/eventsarchive/riotsquad.jpg';
Picture[26]  = 'http://notrag.org/images/eventsarchive/suffragettegroupsmaller.jpg';
Picture[27]  = 'http://notrag.org/images/eventsarchive/airplot2009-6.jpg';
Picture[28]  = 'http://notrag.org/images/eventsarchive/airplotbiglunch2009-3.jpg';

// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "<p>Digging for Victory</p>";
Caption[2]  = "<p>Amy Lends Support</p>";
Caption[3]  = "<p>Boris Johnson - Against the Runway</p>";
Caption[4]  = "<p>The message is Plain and Clear</p>";
Caption[5]  = "<p>Yummy</p>";
Caption[6]  = "<p>Only the Government was unaware that people are buried here.<br />..... but then again, we voted them in.</p>";
Caption[7]  = "<p>Heathrow Climate Camp 2007</p>";
Caption[8]  = "<p>Climate March 2007<br />The rain and wind did not deter NoTRAG.</p>";
Caption[9]  = "<p>Climate Rush</p>";
Caption[10]  = "<p>How did they do that?</p>";
Caption[11]  = "<p>&nbsp;</p></p>";
Caption[12]  = "<p>&nbsp;</p></p>";
Caption[13]  = "<p>&nbsp;</p>";
Caption[14]  = "<p>&nbsp;</p>";
Caption[15]  = "<p>Euro Flash Mob 2009</p>";
Caption[16]  = "<p>European Day Of Action 2007</p>";
Caption[17]  = "<p>Flash Mob January 2009</p>";
Caption[18]  = "<p>Glastonbury 2009</p>";
Caption[19]  = "<p>Ken Livingstone a staunch supporter of N0TRAG's aims.</p>";
Caption[20]  = "<p>&nbsp;</p>";
Caption[21]  = "<p>Climate Rush - On The Run</p>";
Caption[22]  = "<p>Climate Rush - Getting Ready</p>";
Caption[23]  = "<p>No Seriously - How DID they do that!</p>";
Caption[24]  = "<p>Richard Briers</p>";
Caption[25]  = "<p>They're guarding a Gate, He's playing a guitar and I'm watching.</p>";
Caption[26]  = "<p>&nbsp;</p>";
Caption[27]  = "<p>Airplot</p>";
Caption[28]  = "<p>Airplot - Big Lunch</p>";

// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 1;
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 runSlideShow(){
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();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
