	var speed = 1500;
	var Pic = new Array("VandepoelDrinks", "De bol", "Replay", "hitFm","Aveve", "Bekkers", "BioKorn", "Metropole", "VanOsch", "Struys",
						"Cafétaria", "Erdal", "Mullens",
						"Stroobants", "Argenta" ,"Buvens", "Capra", "Centea","DeWit", "Willex", "KokkieWok", "Optikon", "qTeam", 
						"Sunlounge", "Vanvinckenroye", "SparHalen", "Stas", "Tamara", "TeleBreva", "Vandepaer", "Vandepoel", 
						"Boucherieke","Koffiepotje", "Snuffelmarkt", "Raymaekers", "KPD");	
						
	var t, j = 0, p = Pic.length, preLoad = new Array();
	
	var priority = 0;
	var check = true;
	
	for (i = 0; i < p; i++){
	   preLoad[i] = new Image();
	   preLoad[i].src = "../img/Sponsors/" + Pic[i] + ".PNG";
	}
	
	function runSlideShow(){		
		if(check){
			j = calculateStartIndex(priority);
			check = false;
		}
		
	   	document.images.SlideShow.src = preLoad[j].src;
	   	j += 1;
	   	if (j > (p-1)) j=0;
	   	t = setTimeout('runSlideShow()', speed);
	}
	
	function calculateStartIndex(pr){
		var startIndex = Math.round((p/6)*pr);
		return startIndex;
	}
	
	function setPriority(pr){
		this.priority = pr;
	}
	
	function getFirstPicture(){
		var pr = calculateStartIndex(priority);
		return preLoad[pr].src;
	}
