window.onload = initAll;

var currImg = 1;

var nextPic = 3;

var opac = 100;

function initAll() {

	var newImg = new Image();

	newImg.id = 'img2';

	newImg.onload = startFade;

	newImg.style.zIndex = '1';

	document.getElementById('image').appendChild(newImg);

	newImg.src = 'images/2.jpg';

}

function fadeOut() {

	opac = opac - 5;

	var img = document.getElementById('img'+currImg);

	img.style.opacity = (opac / 100);

	img.style.filter = 'alpha(opacity='+(opac)+')';

	if (opac > 0) {

		setTimeout('fadeOut()',50);

	} else {

		currImg = (currImg % 2) + 1;

		opac = 100;

		var curr = document.getElementById('img'+currImg);

		curr.style.zIndex = 2;

		img.style.zIndex = 1;

		img.style.opacity = 1;

		img.style.filter = 'alpha(opacity=100)';

		img.onload = startFade;

		img.src = 'images/'+nextPic+'.jpg';

		nextPic = nextPic + 1;

		if (nextPic > 13) {

			nextPic = 1;

		}

	}

}

function startFade() {

	setTimeout('fadeOut()',5000);

}

function create_mail(naam, domain, tld, label) {
    var mail;
    mail += '<a href="' + 'ma' + 'il' + 'to:' + bepandsep;
    mail += '&#64;' + yahoo '.' + com;
    mail += '">' + label + '<' + '/a>';
    document.write(mail);
}

