//http://www.codelifter.com/main/javascript/slideshow2.html

// http://www.codelifter.com

// =======================================
// set the following variables
// =======================================

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 7000

// Duration of crossfade (seconds)
var crossFadeDuration = 10

// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'http://www.brandweerschiphol.nl/script-brw-spl/script-images/01.jpg'
Pic[1] = 'http://www.brandweerschiphol.nl/script-brw-spl/script-images/02.jpg'
Pic[2] = 'http://www.brandweerschiphol.nl/script-brw-spl/script-images/03.jpg'
Pic[3] = 'http://www.brandweerschiphol.nl/script-brw-spl/script-images/04.jpg'
Pic[4] = 'http://www.brandweerschiphol.nl/script-brw-spl/script-images/05.jpg'
Pic[5] = 'http://www.brandweerschiphol.nl/script-brw-spl/script-images/06.jpg'
Pic[6] = 'http://www.brandweerschiphol.nl/script-brw-spl/script-images/07.jpg'
Pic[7] = 'http://www.brandweerschiphol.nl/script-brw-spl/script-images/08.jpg'
Pic[8] = 'http://www.brandweerschiphol.nl/script-brw-spl/script-images/09.jpg'
Pic[9] = 'http://www.brandweerschiphol.nl/script-brw-spl/script-images/10.jpg'
Pic[10] = 'http://www.brandweerschiphol.nl/script-brw-spl/script-images/11.jpg'
Pic[11] = 'http://www.brandweerschiphol.nl/script-brw-spl/script-images/12.jpg'



// =======================================
// do not edit anything below this line
// =======================================

var t
var j = 0
var p = Pic.length

var preLoad = new Array()
for (i = 0; i < p; i++){
   preLoad[i] = new Image()
   preLoad[i].src = Pic[i]
}

function runSlideShow(){
   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(duration=2)"
      document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SlideShow.filters.blendTrans.Apply()      
   }
   document.images.SlideShow.src = preLoad[j].src
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   j = j + 1
   if (j > (p-1)) j=0
   t = setTimeout('runSlideShow()', slideShowSpeed)
}




// start no copy script //
var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// and no copy script //






// start no highlight script //
function disableselect(e){
return false
} 

function reEnable(){
return true
} 

//if IE4+
document.onselectstart=new Function ("return false") 

//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
// and no highlight script //





// start hide status bar //
function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
// ad hide status bar //






























