function checkAspForm(){
	if(document.getElementById('i_name').value == ""){
		alert('Bitte geben Sie einen Namen ein.');
		document.getElementById('i_name').focus();
		return false;
	}
}

function checkAspForm2(){
	if(document.getElementById('i_bereich').value == "-1"){
		alert('Bitte wählen Sie einen Bereich aus.');
		document.getElementById('i_bereich').focus();
		return false;
	}
}

function mouseOverCloud(begriffsID){
	document.getElementById(begriffsID).style.color = '#000000';
	document.getElementById(begriffsID).style.textDecoration = 'underline';
}

function mouseOutCloud(begriffsID){
	document.getElementById(begriffsID).style.color = '#5E5D5D';
	document.getElementById(begriffsID).style.textDecoration = 'none';
}

akt_automat = "";
function moveImg(id){
	akt_automat = id;
	for(i = 0; i < arrAutomat.length; i++){
		if(id == arrAutomat[i]){
			jQuery("#bild_"+arrAutomat[i]).animate({top:"-60px"});
			if(document.getElementById('link_'+arrAutomat[i]+'_1')){
				document.getElementById('link_'+arrAutomat[i]+'_1').style.display = 'block';
			}
			if(document.getElementById('link_'+arrAutomat[i]+'_2')){
				document.getElementById('link_'+arrAutomat[i]+'_2').style.display = 'block';
			}
			if(id == "omni"){
				setTimeout('GB_showCenter("OmniPlus Internationl", "http://www.nuertingen.omniplus.com",650,1100);', 1500);
			}
		}else{
			jQuery("#bild_"+arrAutomat[i]).animate({top:"0px"});
			if(document.getElementById('link_'+arrAutomat[i]+'_1')){
				document.getElementById('link_'+arrAutomat[i]+'_1').style.display = 'none';
			}
			if(document.getElementById('link_'+arrAutomat[i]+'_2')){
				document.getElementById('link_'+arrAutomat[i]+'_2').style.display = 'none';
			}
		}
	}
	setTimeout("resetAutomaten();", 5000);
}

function resetAutomaten(){
	jQuery('#bild_'+akt_automat).animate({top:'0px'});
	if(document.getElementById('link_'+akt_automat+'_1')){
		document.getElementById('link_'+akt_automat+'_1').style.display = 'none';
	}
	if(document.getElementById('link_'+akt_automat+'_2')){
		document.getElementById('link_'+akt_automat+'_2').style.display = 'none';
	}
}

var x = 0;
function loadUhr(){
	window.setInterval("reloadSrc()", 1000);
}

function reloadSrc(){
	x = x + 1;
	document.getElementById('img_uhr').src = '/we-includes/uhr/uhr.php?x='+x;
}
