//Das ist nur bei script moeglich
 var originalText;
 var Site_link;
 var Text;
 var classType;

function change_d(id){
   Site_link=document.getElementById(id);
   originalText=Site_link.firstChild.nodeValue;
  
   //Neuen Text einsetzen
   if(id=="aussteller"){Text="Infos f%FCr Aussteller"; classType="single"; }
   if(id=="besucher"){Text="Infos f%FCr Besucher";  classType="single";}
   if(id=="events"){Text="Alle Events und Kongresse";   classType="single";}
   if(id=="presse"){Text="Presseinformationen"; classType="single";}
   if(id=="vmp"){Text="Virtual Market Place"; classType="single";}
   if(id=="homeappliances"){Text="Home Appliances @ IFA \n";classType="single";}
   
  Site_link.firstChild.nodeValue=unescape(Text);

   if(classType=="Tosingle")
      Site_link.style.padding="110px 0 110px 0";
  else{
      if(classType=="Todouble")
        Site_link.style.padding="101px 0 101px 0";
     else
       Site_link.style.padding="110px 0 110px 0";
     }
  
  
      
  return originalText;
}


function change_e(id){

   Site_link=document.getElementById(id);
   originalText=Site_link.firstChild.nodeValue;

   //Neuen Text einsetzen
   if(id=="exhibitor"){Text="Exhibitor information"; classType="single";}
   if(id=="visitor"){Text="Visitor information"; classType="single";}
   if(id=="events"){Text="All events\n\r & conferences"; classType="Todouble";}
   if(id=="press"){Text="Press information"; classType="single";}
   if(id=="vmp"){Text="Virtual Market Place \n";classType="Tosingle";}
   if(id=="homeappliances"){Text="Home Appliances @ IFA \n";classType="single";}
     
   Site_link.firstChild.nodeValue=Text;
   if(classType=="Tosingle")
      Site_link.style.padding="110px 0 110px 0";
  else{
      if(classType=="Todouble")
        Site_link.style.padding="101px 0 101px 0";
     else
       Site_link.style.padding="110px 0 110px 0";
     }
  
  
  return originalText;
}

function rechange(){
   Site_link.firstChild.nodeValue=originalText;
   Site_link.style.padding="";
}