	var opening_div =  "<div style='position:absolute; width:220px; height:175px; top:2px;left:2px; background-color:#000000;'></div><div style='position:absolute; width:218px; height:173px; top:0px; left:0px; background-color:#ffffff; border:1px #cccccc solid'><div class='textbox'>";
	var planungstext = "Individually designed elements for outdoors from ELANCIA  are the result of our creativity and competence in  realising your ideas and  requirements. As a team, we specialise in state-of-the-art  outdoor furniture designed to blend in with the environment and enhance the outdoor lifestyle of today.  Architects, town planners, consulting engineers, public authorities as well as private customers  all see us as being a reliable partner  supporting their  public works projects. ";
	var loesungstext = "ELANCIA offers a complete service, beginning with the planning, through to the design and production and concluding with the final positioning on site. Whether in steel, stainless steel, wood, concrete or glass, we can co-operate with your wishes to design and produce a made-to-measure solution  resulting in a perfect combination of style, material and  application.";
	var fertigungstext = "Sophisticated design,  well-engineered   functions and lasting quality  distinguish our products. From park benches, railings, bike racks, information systems to shelters,  the finished products from  ELANCIA  meet the needs of every  usage, thereby becoming a pleasant feature noticed and admired by both residents and visitors  alike/ passers-by.";
	var closing_div =  "</div></div>";
	var planungsbox = opening_div + planungstext + closing_div;
	var loesungsbox = opening_div + loesungstext + closing_div;
	var fertigungsbox = opening_div + fertigungstext + closing_div;
	function show1(text) {
 	if(text=='planungstext') {
    document.getElementById('planungstext').style.visibility = "visible";
	document.getElementById("planungstext").innerHTML = planungsbox;
	document.getElementById('loesungstext').style.visibility = "hidden";
	document.getElementById('fertigungstext').style.visibility = "hidden";
	}
	if(text=='loesungstext') {
    document.getElementById('loesungstext').style.visibility = "visible";
	document.getElementById("loesungstext").innerHTML = loesungsbox;
	document.getElementById('planungstext').style.visibility = "hidden";
	document.getElementById('fertigungstext').style.visibility = "hidden";
	}
	if(text=='fertigungstext') {
    document.getElementById('fertigungstext').style.visibility = "visible";
	document.getElementById("fertigungstext").innerHTML = fertigungsbox;
	document.getElementById('planungstext').style.visibility = "hidden";
	document.getElementById('loesungstext').style.visibility = "hidden";
	}
	}
