// automatic promo switch
//-----------------------
var stat = 0;
function switchHeadline(hnr, nr1){
	
	
	for (i = 0 ; i < nr1 ; i++) {

		document.getElementById('submenu'+i).style.display = 'none';
/*		document.getElementById('nr'+i).className = ''; */
	
		if (hnr == i) {
			document.getElementById('submenu'+hnr).style.display = 'block';
/*			document.getElementById('nr'+hnr).className = 'current'	 */
		}
	}	 
		
	if (stat != 1) {	
		setTimeout("switchHeadlines("+nr1+", "+hnr+")", 5000);
	}
	
}

function switchHeadlines(nr, starth) {

		if (starth == nr-1) {
			nexth = 0;
		}
		else {
			nexth = starth+1;
		}
		if (stat != 1) {
			switchHeadline(nexth, nr);
		}
}