/**
 * @author piosmac
 */

			var tempDiv = "homeText";
		
			function loadNewContent(newContentId, tempMenuUnderline){
				document.getElementById(tempDiv).style.display = 'none';
				document.getElementById(newContentId).style.display = 'block';
				tempDiv = newContentId;
				document.getElementById("menuHome").style.borderBottom = '0px solid white';
				document.getElementById("menuLeistung").style.borderBottom = '0px solid white';
				document.getElementById("menuLinks").style.borderBottom = '0px solid white';
				document.getElementById("menuUeberUns").style.borderBottom = '0px solid white';
				document.getElementById("menuKontakt").style.borderBottom = '0px solid white';
				document.getElementById(tempMenuUnderline).style.borderBottom = '4px solid white';
				
			}
			
			function mouseOverButton(buttonId){
                //document.getElementById(buttonId).style.background = '#FFFFFF';
                document.getElementById(buttonId).style.cursor = 'pointer';
                document.getElementById(buttonId).style.color = '#000000';
            }
            
            function mouseOutButton(buttonId){
                //document.getElementById(buttonId).style.background = '#f00013';
                document.getElementById(buttonId).style.cursor = 'default';
                document.getElementById(buttonId).style.color = '#FFFFFF';
            }
			
			
			
		  

