<!-- Paste this code into an external JavaScript file named: theMenu.js  -->

/*
* Don't change or remove the head comments!
*
* DHTML hierarchical, object oriented menu: VB MENU 1.5
* Copyright (C) 2003-2004  Vladimir Bodurov
*
*   Version  1.5  2004-03-06
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.

* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*
* Copy of GNU Lesser General Public License at: http://www.gnu.org/copyleft/lesser.txt
*
* Source code home page: http://www.bodurov.com/menu.html
*/


// Creating and Managing object

var mc = new MenuCreator();

// Your menu starts here. | This is where you will create the links you want.
mc.Start();
mc.Add("Startsida","huvudramssk.htm","huvudram");
mc.Add("Klubbaktuellt","klubben/klubben.htm","huvudram");
mc.Add("IdrottOnline","http://www.idrottonline.se","_blank");
  mc.Start();
  mc.Add("SSK Skidor","http://www.idrottonline.se/falun/sagmyrask-skidor","_blank");
  mc.Add("SSK Friidrott","http://www.idrottonline.se/falun/sagmyrask-friidrott","_blank");
  mc.End();
mc.Add("Hackmora Bergslopp","hackmora bergslopp/hackmoraramar.htm","huvudram");
mc.Add("Bildgalleri","bilder/bildsida.htm","huvudram");
mc.Add("Om klubben","huvudramssk.htm","huvudram");
  mc.Start();
  mc.Add("Klubbhistorik","omklubben/Historiassk.htm","huvudram");
  mc.Add("Styrelse,Ledare","omklubben/organisation.htm","huvudram");
  mc.End();
mc.Add("Övriga länkar","ovrigalankar/lankar.htm","huvudram");
mc.Add("Gästbok","http://www.olzzon.com/g/g.php?a=s&i=g17-00011-10","_blank");    
//mc.Start();
//mc.Add("MSN","http://msn.com/","_blank");
//mc.Add("Yahoo","http://yahoo.com","_blank");
//mc.Start();
//mc.Add("Yahoo Canada","http://ca.yahoo.com/","_blank");
//mc.Add("Yahoo France","http://fr.yahoo.com/","_blank");
//mc.End();
//mc.Add("Google","http://google.com","_blank");
//mc.Start();
//mc.Add("Google Images","http://www.google.com/imghp","_blank");
//mc.Add("Google Groups","http://www.google.com/grphp","_blank");
//mc.Start();mc.Add("Email Me","mailto:dhtml_menu@bodurov.com");
mc.End();
// Your menu ends here

// if you uncomment this the menu will be vertical instead of horizontal
//mc.Vertical();
// if you uncomment this the box will be centered
//mc.Center();
// if you uncomment this you will have to write the first level youself
//mc.DoNotWriteFirstLevel();

mc.Draw();