
function reload_menue(zahl)
{
  var menue="";

  if(zahl==1)  menue="startseite";
  if(zahl==2)  menue="wir";
  if(zahl==3)  menue="sound";
  if(zahl==4)  menue="musik";
  if(zahl==5)  menue="referenzen";
  if(zahl==6)  menue="download";
  if(zahl==7)  menue="service";
  if(zahl==8)  menue="kontakt";
  if(zahl==9)  menue="links";
  if(zahl==10) menue="impressum";

  var tmp='navigation.php?link=';
  var str=tmp.concat(menue);
 
  top.parent.navigation.location=str;
  
}

