<!-- Begin

var slideshows = new Array();

function runSlideShow(id){
	var obj = slideshows[id];
	obj.runSlideShow();
}

function SlideShow(ID, Pic){

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 2500;
// Duration of crossfade (seconds)
var crossFadeDuration = 4;
// Specify the image files
var Pic = Pic;
// to add more images, just continue
// the pattern, adding to the array below


// do not edit anything below this line
	var t;
	var j = 0;
	var p = Pic.length;
	var preLoad = new Array();
	var img_slideshow = document.getElementById(ID);
	var self = this;
	slideshows[ID] = self;
	for (i = 0; i < p; i++) {
		preLoad[i] = new Image();
		preLoad[i].src = Pic[i];
	}
	
	this.runSlideShow = function() {
		if (document.all) {
		img_slideshow.style.filter="blendTrans(duration=2)";
		img_slideshow.style.filter="blendTrans(duration=crossFadeDuration)";
		img_slideshow.filters.blendTrans.Apply ();}
		img_slideshow.src = preLoad[j].src;
		if (document.all) {
			img_slideshow.filters.blendTrans.Play( );
		}
		j = j + 1;
		if (j > (p - 1)) j = 0;
		t = setTimeout('runSlideShow("'+ID+'")', slideShowSpeed);
	}
	this.runSlideShow();

}

function RunSlideShows(){
	show1 = new SlideShow('Slideshow', new Array('images/banner1.png','images/banner2.png','images/banner3.png','images/banner4.png'));
	show2 = new SlideShow('Slideshow2', new Array('images/logo-rf.png','images/logo-dkc.png','images/logo-pbc.png','images/logo-fvcp.png','images/logo-sbvv.png','images/logo-vlvls.png','images/logo-vcp.png','images/logo-um.png','images/logo-vsbfonds.png','images/logo-erasmus.png', 'images/logo-sns.png','images/logo-svvwb.png','images/logo-vodvs.png'));
	show3 = new SlideShow('Slideshow3', new Array('images/artiest1.png','images/artiest2.png','images/artiest3.png','images/artiest4.png','images/artiest5.png','images/artiest6.png','images/artiest7.png','images/artiest8.png','images/artiest9.png','images/artiest10.png','images/artiest11.png'));
}

// End -->




