function init(){
	// INTIS ALL ONLOAD - SCRIPTS
	// startseite;
	user_agent = navigator.userAgent;
	MSIE = false;
	if (user_agent.indexOf("MSIE 3") > -1) MSIE=3;
	if (user_agent.indexOf("MSIE 4") > -1) MSIE=4;
	if (user_agent.indexOf("MSIE 5") > -1) MSIE=5;
	if (user_agent.indexOf("MSIE 5.5") > -1) MSIE=5.5;
	if (user_agent.indexOf("MSIE 6") > -1) MSIE=6;
	if (user_agent.indexOf("MSIE 7") > -1) MSIE=7;
	
	if(!MSIE || MSIE >5){
		if(showbox_images_01){
			if(document.getElementById("showbox_img_01")) diaShow();
			// WENN DIE BILDER GEFUNDEN WURDEN, KANN DIE DIASHOW BEGINNEN...
			return true;
		}
	}
}

// DIA SHOW SCRIPTS ************************************************************

function diaShow() {
	logFile = '';
	document.getElementById("showbox_img_01").src = showbox_images_01[0];
	document.getElementById("showbox_01").style.background = "url("+showbox_images_01[1]+")";
	document.getElementById("showbox_img_02").src = showbox_images_02[0];
	document.getElementById("showbox_02").style.background = "url("+showbox_images_02[1]+")";
	document.getElementById("showbox_img_03").src = showbox_images_03[0];
	document.getElementById("showbox_03").style.background = "url("+showbox_images_03[1]+")";
	window.setInterval("diaStart()", 18000);
	
	window.setTimeout("Effect.Fade('showbox_img_01', {duration: 2})", 2000);
	window.setTimeout("Effect.Fade('showbox_img_02', {duration: 2})", 3000);
	window.setTimeout("Effect.Fade('showbox_img_03', {duration: 2})", 1000);	

		
}

function changeImg(){
	// falls mehr als 2 Bilder bestehen, muss das jeweils ausgeblendete ausgetauscht werden
	
}

function diaStart() {
	x = 3000;
	y = 11000;
	window.setTimeout("Effect.Appear('showbox_img_01', {duration: 2})", x);
	window.setTimeout("Effect.Fade('showbox_img_01', {duration: 2})", y);
	x = 5000;
	y = 13000;
	window.setTimeout("Effect.Appear('showbox_img_02', {duration: 2})", x);
	window.setTimeout("Effect.Fade('showbox_img_02', {duration: 2})", y);
	x = 2000;
	y = 10000;
	window.setTimeout("Effect.Appear('showbox_img_03', {duration: 2})", x);
	window.setTimeout("Effect.Fade('showbox_img_03', {duration: 2})", y);
}


