// javascript file


var pics = new Array;
var loaded = new Array()
var i = 0;

pics[0] = "img/menu/headNews.gif";
pics[1] = "img/menu/headNewsHover.gif";
pics[2] = "img/menu/headMembers.gif";
pics[3] = "img/menu/headMembersHover.gif";
pics[4] = "img/menu/headForum.gif";
pics[5] = "img/menu/headForumHover.gif";
pics[6] = "img/menu/headGallery.gif";
pics[7] = "img/menu/headGalleryHover.gif";
pics[8] = "img/menu/headWin.gif";
pics[9] = "img/menu/headWinHover.gif";
pics[10] = "img/menu/headPoll.gif";
pics[11] = "img/menu/headPollHover.gif";
pics[12] = "img/menu/headMusic.gif";
pics[13] = "img/menu/headMusicHover.gif";
pics[14] = "img/menu/headGuestbook.gif";
pics[15] = "img/menu/headGuestbookHover.gif";
pics[16] = "img/menu/headTeam.gif";
pics[17] = "img/menu/headTeamHover.gif";
pics[18] = "img/menu/headSponsors.gif";
pics[19] = "img/menu/headSponsorsHover.gif";
pics[20] = "img/menu/headFaq.gif";
pics[21] = "img/menu/headFaqHover.gif";
pics[22] = "img/menu/headHome.gif";
pics[23] = "img/menu/headHomeHover.gif";

for (i = 0; i < pics.length; i++){
  loaded[i] = new Image();
  loaded[i].src = pics[i];
}

//