/*
 * Slideshow skrevet af Søren Lundtoft
 */

$(document).ready(function() {
	var k = Math.floor((Math.random()*10)+1);
	$('#myFlashDiv').append("<img src='data/archive/topflash/"+k+".jpg'>");
    window.setInterval(function() {
		k = Math.floor((Math.random()*10)+1);

		$("<img src='data/archive/topflash/"+k+".jpg'>").hide().appendTo('#myFlashDiv').fadeIn('slow');
	}, 6000);
});
