﻿onload = function(){

	



	nextVideoButton = document.getElementById("nextVideo");

	nextVideoButton.onclick = random_iframe;
	

	

	

//Specify random URLs to display inside iframe
var randomcontent=new Array();
randomcontent[0]="videos/alderland/small/alderland_small.html";
randomcontent[1]="videos/alderland/small/aporna-3_small.html";
randomcontent[2]="videos/alderland/small/blundar-du_small.html";
randomcontent[3]="videos/alderland/small/dina-svar_small.html";
randomcontent[4]="videos/alderland/small/ett-kors_small.html";
randomcontent[5]="videos/alderland/small/halla-mig-vaken_small.html";
randomcontent[6]="videos/alderland/small/hundarna_small.html";
randomcontent[7]="videos/alderland/small/jussi_small.html";
randomcontent[8]="videos/alderland/small/klara-der-har.html";
randomcontent[9]="videos/alderland/small/kom-o-dansa_small.html";
randomcontent[10]="videos/alderland/small/min-sang_small.html";
randomcontent[11]="videos/alderland/small/nell.html";
randomcontent[12]="videos/alderland/small/tankar-om-dig.html";

	random_iframe();

	function random_iframe(){

	var iframeobj=document.getElementById("dynstuff");
	iframeobj.src=randomcontent[Math.floor(Math.random()*randomcontent.length)];
}

}



