var imageUrlsArray=new Array("forside1.jpg","forside2.jpg","forside3.jpg","forside4.jpg","forside5.jpg","forside6.jpg","forside7.jpg");var viewTime=4000;var fadeTime=1500;var markup='<div id="slideshow">'
function removeFromArray(array,value){var tempArray=new Array();for(i=0;i<array.length;i++){if(array[i]!=value)
tempArray.push(array[i]);}
return tempArray;}
while(imageUrlsArray.length>0){var index=Math.round(Math.random()*(imageUrlsArray.length-1));$('<img />')[0].src='flash/forsidebilder/'+imageUrlsArray[index];markup+="<img src='flash/forsidebilder/"+imageUrlsArray[index]+"' width='600' height='380'>";imageUrlsArray=removeFromArray(imageUrlsArray,imageUrlsArray[index]);}
markup+="</div>"
$(function(){var fx="cover";function start(){$('#slideshow').cycle('stop').remove();$('#show').append(markup);$('#slideshow').cycle({fx:'fade',timeout:viewTime,speed:fadeTime,delay:-2500,sync:true});}
start();});
