var aktiv = null;
function showinfo(infotype)
{
	switch(infotype)
	{
		case 0:
			window.clearInterval(aktiv);
			document.getElementById("infomenu").innerHTML = "www.<strong>power-sales-service</strong>.de";
			break;
		case 1:
			window.clearInterval(aktiv);
			document.getElementById("infomenu").innerHTML = "Über uns...";
			break;
		case 2:
			window.clearInterval(aktiv);
			document.getElementById("infomenu").innerHTML = "Leistungsspektrum...";
			break;
		case 3:
			window.clearInterval(aktiv);
			document.getElementById("infomenu").innerHTML = "Standortbeschreibung...";
			break;
		case 4:
			window.clearInterval(aktiv);
			document.getElementById("infomenu").innerHTML = "Kontaktformular...";
			break;
			
			case 5:
			window.clearInterval(aktiv);
			document.getElementById("infomenu").innerHTML = "Pressestimmen...";
			break;
	}
}
	
function clear_info()
{
	aktiv = window.setInterval("showinfo(0)", 1000);
}
