
// (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 = 4000;

// 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/slideshowcc/climatecamp23.jpg';
Picture[2]  = 'http://notrag.org/images/slideshowcc/climatecamp52.jpg';
Picture[3]  = 'http://notrag.org/images/slideshowcc/climatecamp22.jpg';
Picture[4]  = 'http://notrag.org/images/slideshowcc/climatecamp4.jpg';
Picture[5]  = 'http://notrag.org/images/slideshowcc/climatecamp11.jpg';
Picture[6]  = 'http://notrag.org/images/slideshowcc/climatecamp13.jpg';
Picture[7]  = 'http://notrag.org/images/slideshowcc/climatecamp14.jpg';
Picture[8]  = 'http://notrag.org/images/slideshowcc/climatecamp15.jpg';
Picture[9]  = 'http://notrag.org/images/slideshowcc/climatecamp16.jpg';
Picture[10]  = 'http://notrag.org/images/slideshowcc/climatecamp19.jpg';
Picture[11]  = 'http://notrag.org/images/slideshowcc/climatecamp5.jpg';
Picture[12]  = 'http://notrag.org/images/slideshowcc/climatecamp10.jpg';
Picture[13]  = 'http://notrag.org/images/slideshowcc/climatecamp6.jpg';
Picture[14]  = 'http://notrag.org/images/slideshowcc/climatecamp12.jpg';
Picture[15]  = 'http://notrag.org/images/slideshowcc/climatecamp8.jpg';
Picture[16]  = 'http://notrag.org/images/slideshowcc/climatecamp7.jpg';
Picture[17]  = 'http://notrag.org/images/slideshowcc/climatecamp18.jpg';
Picture[18]  = 'http://notrag.org/images/slideshowcc/climatecamp21.jpg';
Picture[19]  = 'http://notrag.org/images/slideshowcc/climatecamp9.jpg';
Picture[20]  = 'http://notrag.org/images/slideshowcc/climatecamp20.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>Police teams descend on bemused residents at history project.</p>";
Caption[2]  = "<p>Former Sipson Postmistress records her story for the Climate Camp history project.</p>"; 
Caption[3]  = "<p>Sipson resident finds route to Harlington pharmacy blocked by police.</p>";
Caption[4]  = "<p>Creative ideas ensure Sipson's plight gets global media coverage.</p>";
Caption[5]  = "<p>Alternative transport at Climate Camp entrance.</p>";
Caption[6]  = "<p>Another green machine.</p>";
Caption[7]  = "<p>Rinky Dink - the amazing people-powered generator.</p>";
Caption[8]  = "<p>Pit stop to check lights, music, PA system - and aching legs.</p>";
Caption[9]  = "<p>Eco-friendly and fun too!</p>";
Caption[10]  = "<p>Local MP joins the group heading out for the Community March.</p>";
Caption[11]  = "<p>Getting the message across.</p>";
Caption[12]  = "<p>The Community March heads for Harmondsworth village.</p>";
Caption[13]  = "<p>A patchwork of people with one common purpose.</p>";
Caption[14]  = "<p>Yet more protestors head down Holloway Lane towards Harmondsworth.</p>";
Caption[15]  = "<p>Police repeatedly halt march so it takes 3 hours to cover less than 3 miles!</p>";
Caption[16]  = "<p>Music and chants help fill the time during enforced stops.</p>";
Caption[17]  = "<p>A waiting game - Police prevent entry to Harmondsworth.</p>";
Caption[18]  = "<p>Meanwhile Climate Camp protestors head for BAA HQ.</p>";
Caption[19]  = "<p>After the march; bedraggled but point made.</p>";
Caption[20]  = "<p>A Sipson resident says it all.</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);
}
