// Created by Oscar (oscar@gluteus.se) 2009-06-17 at 14:36:17
// randomize the start flash
var name = new Array('intro_kortlimo_en', 'intro_longlimo_en', 'intro_begbil_en', 'intro_ambulans_en');
var movie = new Array('fileadmin/flash/intro_kortlimo_en', 'fileadmin/flash/intro_longlimo_en', 'fileadmin/flash/intro_begbil_en', 'fileadmin/flash/intro_ambulans_en');
var rand=Math.floor(Math.random()*name.length); // get a random number between 0 and size of array - 1
var code = "if (AC_FL_RunContent == 0) {alert('This page requires AC_RunActiveContent.js.');}else{AC_FL_RunContent('codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0','width', '1000','height', '386','src', '"+name[rand]+"','quality', 'high','pluginspage', 'http://www.macromedia.com/go/getflashplayer','align', 'middle','play', 'true','loop', 'true','scale', 'showall','wmode', 'opaque','devicefont', 'false','id', 'scrolling_banner','bgcolor', '','name', '"+name[rand]+"','menu', 'true','allowFullScreen', 'false','allowScriptAccess','sameDomain','movie', '"+movie[rand]+"','salign', '');}";
eval(code);