<!-- Geschwindigkeit der Diashow einstellen (Millisekunden) -->
var slideShowSpeed = 6000;
<!-- Dauer der Ueberblendung (Sekunden) -->
var crossFadeDuration = 5;
var Pic = new Array();
Pic[0] = 'img/sofortkredit_header.jpg';
Pic[1] = 'img/privatkredit_header.jpg';
Pic[2] = 'img/autokredit_header.jpg';
Pic[3] = 'img/reisekredit_header.jpg';
Pic[4] = 'img/kreditohneschufa_header.jpg';

<!-- Unterhalb dieser Zeile nichts aendern -->
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}

function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}



function bookFav() {
var el = document.getElementById('bookmark');	
if(el) {
//myURL = window.location.href; /* gets url of page to bookmark */
//myTitle = document.title; /* gets title of page */
myURL = 'http://www.online-kredit24.com';
myTitle = 'Online-Kredit24.com';
//alert(myURL);
//alert(myTitle);
el.onClick = addFav(myURL,myTitle); /* this event is supposed to open the bookmark dialog */
}
}
function addFav(aURL,aTitle) {
if (document.all) { /* is this MSIE? */
window.external.AddFavorite(aURL,aTitle); /* if yes then call bookmark for MSIE */
} else if (window.sidebar) {
window.sidebar.addPanel(aTitle,aURL,''); /* else call bookmark for NS and FF */
} else { 
alert('Bitte fügen Sie die Seite manuell hinzu!'); 
}
}