    <!--	
    	
  	window.onload = function() {
     
  	 // Map Effects
     
  	 $('04lageplan').onclick = function() {
          	obj1 = document.getElementById('inhalt');
          	obj1.style.visibility = "hidden";
          	obj1.style.height = "1px";
          	
          	obj2 = document.getElementById('inhaltrechts');
          	obj2.style.visibility = "hidden";
          	obj2.style.height = "1px";
          	
          	obj3 = document.getElementById('lageplan');
          	obj3.style.visibility = "visible";
          	obj3.style.height = "330px";
     };
     
  	 $('04close').onclick = function() {
          	obj1 = document.getElementById('inhalt');
          	obj1.style.visibility = "visible";
          	obj1.style.height = "";
          	
          	obj2 = document.getElementById('inhaltrechts');
          	obj2.style.visibility = "visible";
          	obj2.style.height = "";
          	
          	obj3 = document.getElementById('lageplan');
          	obj3.style.visibility = "hidden";
          	obj3.style.height = "1px";
     };
    
	};
    
    //-->

