//---------------
//
// www.kigalczynski.pl -- Oficjalna strona Konstantego Ildefonsa Galczynskiego
//
// Copyright (C) 2007, Mikolaj Galczynski
//
//---------------
menuArray = new Array(
  "",
  "Dedication", 
  "Overture",
  "Byzantium", 
  "Eutyphron",
  "Ostinato", 
  "Little string concerto", 
  "Nenia of Niobe",
  "",
  "",

  "", /*Sanie*/
  "", /*Spotkanie z matk±*/
  "The Enchanted Carriage",
  "", /*Warszawscy doro¿karze/*
  "", /*Warszawski wiatr*/
  "", /*Piosenka o Wicie Stwoszu*/
  "", /*Poemat dla zdrajcy (fragm.)*/
  "",
  "",
  ""
  )

function setMenuContent( idx )
{
   document.write( menuArray[ idx ] );
}

function setUCaseMenuContent( idx )
{
   document.write( menuArray[ idx ].toUpperCase() );
}

//
// Uppercase only title
//
function setUCaseMenuContent2( idx )
{
   var str = menuArray[ idx ];
   var str2;
   var i = str.indexOf( '(' );
   str2 = str.substr( 0, i ).toUpperCase();
   document.write( str2 + str.substr( i ) );
}
