<!-- Hide script from older browsers
// Preloads all images defined in the imgNamesMenu array
function preLoadMenuImages()
{
  // Define the imagenames to be preloaded, remeber that the last is without komma (,)
  imgNamesMenu = new Array(
                       // Neutral images
                       'menu_n_about.jpg',
                       'menu_n_events.jpg',
                       'menu_n_home.jpg',
                       'menu_n_news.jpg',
                       'menu_n_notes.jpg',
                       'menu_n_prints.jpg',
                       'menu_n_shots.jpg',
                       'menu_n_tricks.jpg',
                       // Active images (mouse over etc.)
                       'menu_a_about.jpg',
                       'menu_a_events.jpg',
                       'menu_a_home.jpg',
                       'menu_a_news.jpg',
                       'menu_a_notes.jpg',
                       'menu_a_prints.jpg',
                       'menu_a_shots.jpg',
                       'menu_a_tricks.jpg',
                       // Selected images
                       'menu_s_about.jpg',
                       'menu_s_events.jpg',
                       'menu_s_home.jpg',
                       'menu_s_news.jpg',
                       'menu_s_notes.jpg',
                       'menu_s_prints.jpg',
                       'menu_s_shots.jpg',
                       'menu_s_tricks.jpg'
  );
  for (counter in imgNamesMenu)                       // for each image filename defined, create a new image object and load the image
  {
    fakeImage= new Image();                       // Create the image object
    fakeImage.src= 'images/'+imgNamesMenu[counter];   // load the image into the image object
  }
}
// end hiding contents -->
