//Aus der Datei out/sidebar.tpl
function resetText(input)
{
    if(input.value=="Ihr Name" || input.value=="Ihre Telefonnummer")
    {
    	input.value = "";
    }
    
    input.style.color = "#000";
}

//Aus der Datei out/sidebar.tpl
function restoreText(input,nr)
{
    if(input.value == "" && nr == 1)
    {
    	input.value = "Ihr Name";
    	input.style.color = "#999";
    }
    if(input.value == "" && nr == 2)
    {
    	input.value = "Ihre Telefonnummer";
    	input.style.color = "#999";
    }
}

//Aus der Datei out/objekte.tpl
function bildwechsel(bild){
	document.getElementById('grossesbild').src = bild.src;
	document.getElementById('beschreibungbild').innerHTML = bild.title;
}
