(function(){
var i=0, myimages=new Array()
//specify random images below. You can have as many as you wish
            myimages[0]="http://www.088-nummer.eu/images/header01.jpg"
            myimages[1]="http://www.088-nummer.eu/images/header02.jpg"
            myimages[2]="http://www.088-nummer.eu/images/header03.jpg"

var change=function(){
document.getElementById('randm').style.backgroundImage="url("+document.getElementById('rand').src+")";
fade('rand', 'out', 0, 150);
setTimeout(function(){document.getElementById('rand').src=myimages[(i++<myimages.length-1? i : i=0)];},30);
}

myimages.sort(function() {return 0.5 - Math.random();});
document.write('<div id="randm"><img id="rand" onload="fade(this, \'in\', 100, 2, 30);" src="'+myimages[i++]+'" border=0><\/div>')
setInterval(function(){change();}, 8000);
})();

document.execCommand("BackgroundImageCache",false,true);

