function slumpDirektflygPuff(){



var theImages = new Array();



theImages[0] = '/upload/bilder/puffar/direktflyg/eng/Bild1.jpg';

theImages[1] = '/upload/bilder/puffar/direktflyg/eng/Bild2.jpg';

theImages[2] = '/upload/bilder/puffar/direktflyg/eng/Bild3.jpg';

theImages[3] = '/upload/bilder/puffar/direktflyg/eng/Bild4.jpg';

theImages[4] = '/upload/bilder/puffar/direktflyg/eng/Bild5.jpg';


var j = 0;

var p = theImages.length;

var preBuffer = new Array();



for (i = 0; i < p; i++)

{

   preBuffer[i] = new Image();

   preBuffer[i].src = theImages[i];

}



var whichImage = Math.floor(Math.random()*(p));



var altText = 'Non-stop flights from Stockholm-Arlanda. Illustration.';

var linkSrc = '/en/Information--services-to/Traveller-information/Flight-booking/Fly-non-stop/';

var linkText = 'All non-stop destinations and airlines';

var headingText = 'Non-stop flights from Stockholm-Arlanda';



var copyText = 'Fly non-stop if you are travelling to the United States or Asia. That is both the fastest and the most environmentally friendly alternative.';



document.write('<a href="'+linkSrc+'"><img alt="'+altText+'" src="'+theImages[whichImage]+'"/></a>');

document.write('<h2>'+headingText+'</h2>');

document.write('<p>'+copyText+'</p>');

document.write('<a href="'+linkSrc+'" class="teaser_link" title="'+altText+'">'+linkText+'</a>');



}



slumpDirektflygPuff();