/* elcabrito.js */
var active;

function initialisiere(pColor, pUpImg, pDownImg) {
	if (!initialisiere_WSH_ScrollRegler_Version_1_2("main_behaelter", 729, 349, pColor, "transparent",
						pUpImg, pDownImg, 14, 10)) handleScrollerFehler();
	if (window.addEventListener)
		window.addEventListener('DOMMouseScroll', wheel, false);

	window.onmousewheel = document.onmousewheel = wheel;
	
	// IE7: Unobtrusive Flash Object
	if(document.getElementsByTagName && document.all){
		var o = document.getElementsByTagName("object");  
		for(i=0; i<o.length; i++) {  
  		 	 o[i].outerHTML = o[i].outerHTML;  
		}
	}
}

function handleScrollerFehler() {
		// hier etwas sinnvolles tun.
	alert("Scroller funktioniert nicht.");	
}

function init_home(){
	active = window.setInterval('homeShowLayers()', 4000);
}

function homeShowLayers(){
	window.clearInterval(active);
	if(document.getElementById){
		if(document.getElementById('footer_right').style.visibility){
			window.location.href = 'index.php?id=3';
		} else {
			document.getElementById('nav-top').style.visibility = 'visible';
			document.getElementById('wsh_scroll_inhalt').style.visibility = 'visible';
			document.getElementById('footer_right').style.visibility = 'visible';
			switch_upcoming = 0;
		}
	}
}

