// Funktionen, um Kontaktinfos in der Menueleiste anzeigen zu koennen

function showPhone()
{
   document.getElementById("contactinfo").firstChild.nodeValue="+49-179-5910129";
}

function showEmail()
{
   document.getElementById("contactinfo").firstChild.nodeValue="contact@bredehorst-photo.com";
}

function hideInfo(elemName)
{
   document.getElementById(elemName).firstChild.nodeValue=" ";
}