// DO NOT TOUCH ///////////////
var Menu = new Array ()      //
var subMenu = new Array ()   //
///////////////////////////////

////// ADD MENU ITEMS  //////////////////////////////////////////////////////////////////////////////////////////////
//  To add a new menu item, follow the format below.  Every "Menu" must adhere to the following rules
//
//  1. Each menu has a number. i.e. "Menu[0]". This number must start at 0 and be incremented by one for each menu item added.
//  2. Whether you want a sub menu or not, each menu must have the "subMenu[x] = new Array()" line, where x is the same as the 
//     main "Menu[x]" number.
//  3. If you DO want a sub menu, you must assign it TWO numbers. i.e. "subMenu[x][x]". The first number is the same 
//     as the main "Menu" number, and the second must start at 0 and be incremented by one, for every sub menu item added.
//  4. the script is CASE SENSITIVE. 
//
//  -- Example --
//  Menu[0] = new Array ("Link Name", "URL", "Frame Target")
//    subMenu[0] = new Array()
//    subMenu[0][0] = new Array ("Link Name", "URL", "Frame Target")
//    subMenu[0][1] = new Array ("Link Name", "URL", "Frame Target")
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

   MenuIndex = 0
   MenuSubIndex = 0
   Menu[MenuIndex] = new Array("Home", "../shark/textpage.pl?sharkid=ods&sekce=home","_top")           
     subMenu[MenuIndex] = new Array()

   MenuIndex ++
   MenuSubIndex = 0
   Menu[MenuIndex] = new Array("O nás", "../shark/textpage.pl?sharkid=ods&sekce=historie","_top") 
    subMenu[MenuIndex] = new Array()
    subMenu[MenuIndex][MenuSubIndex] = new Array ("Historie","../shark/textpage.pl?sharkid=ods&sekce=historie", "_top") 
   	MenuSubIndex ++	
    subMenu[MenuIndex][MenuSubIndex] = new Array ("Rada místního sdružení","../shark/textpage.pl?sharkid=ods&sekce=rada", "_top") 
   	MenuSubIndex ++	
    subMenu[MenuIndex][MenuSubIndex] = new Array ("Členství v zastupitelstu","../shark/textpage.pl?sharkid=ods&sekce=zastupitelstvo", "_top") 
	MenuSubIndex ++	
    subMenu[MenuIndex][MenuSubIndex] = new Array ("Členství a příznivci","../ods.bystrc/clenstvi.htm", "_top") 
	MenuSubIndex ++	
    subMenu[MenuIndex][MenuSubIndex] = new Array ("Stanovy","http://www.ods.cz/clenstvi/stanovy.php", "_top") 
  
   MenuIndex ++
   MenuSubIndex = 0
   Menu[MenuIndex] = new Array("Bulletin", "../shark/textpage.pl?sharkid=ods&sekce=zpravodaj","_top") 
    subMenu[MenuIndex] = new Array()
    
   MenuIndex ++
   MenuSubIndex = 0
   Menu[MenuIndex] = new Array("Naše stanoviska", "../shark/textpage.pl?sharkid=ods&sekce=stanoviska","_top")           
     subMenu[MenuIndex] = new Array()

   MenuIndex ++
   MenuSubIndex = 0
   Menu[MenuIndex] = new Array("Odkazy", "../shark/textpage.pl?sharkid=ods&sekce=odkazy","_top")           
     subMenu[MenuIndex] = new Array()


////// FORMAT MENU  ///////////////////////////////////////////////////////////////////
orientation = "Horizontal"                           // Orientation of menu.  (horizontal, vertical)
menuStyle = "flat"                                     // Menu Style (flat, 3d)
cellPadding = 3                                      // Cell Padding
cellBorder = 0                                       // Include table border (for no border, enter 0)
verticalOffset = 3                                   // Vertical offset of Sub Menu. 
horizontalOffset = 0                                 // Horizontal offset of Sub Menu. 
subMenuDelay = 2                                     // Time sub menu stays visible for (in seconds)
subIndicate = 0                                      // Show if a sub menu is present (use 0 for "no")
indicator = "<img src='../slib/img/arrow-down.gif' border='0'>"  // Symbol to show if a sub menu is present (subIndicate must be to set to 1)
                                                     // Use standard HTML <img> tag. You can use a character instead of an image. 
                                                     // e.g.      indicator = ">"
separate = 1                                         // Use separator between main items
separator = "&nbsp;&nbsp;&nbsp;|&nbsp;&nbsp;&nbsp;"										 //  Use standard HTML <img> tag or character as separator

// Main Menu Items
borderColor = "#A1B9FF"                    // Border Colour (flat mode only)
borderHighlight = "#97BBD3"                // Border Highlight Colour (3d mode only)
borderShadow = "#31556D"                   // Border Shadow Colour (3d mode only)
menuBackground = //#A1B9FF"                 // Cell Background Colour
menuBackgroundImg = "url(../ods.bystrc/img/bg_menu.png)"                 // Cell Background, format: url(../ods.bystrc/img/bg_menu.png) 
menuHoverBackground = //"#003399"            // Cell Background Colour on mouse rollover
menuHoverBackgroundImg = "url(../ods.bystrc/img/bg_menu.png)"            // Cell Background on mouse rollover
fontFace = "arial"                         // Font Face
fontColour = "#FFFFFF"                     // Font Colour
fontHoverColour = "#ff8c26"                // Font Colour on mouse rollover
fontSize = "10pt"                           // Font Size
fontDecoration = "none"                    // Style of the link text (none, underline, overline, line-through)
fontWeight = "bold"                      // Font Weight (normal, bold)

// Sub Menu Items
sborderColor = "#FFFFFF"                   // Border Colour (flat mode only)
sborderHighlight = "#E9E9E2"               // Border Highlight Colour (3d mode only)
sborderShadow = "#83837C"                  // Border Shadow Colour (3d mode only)
smenuBackground = "#ff8c26" //"#A1B9FF"                // Cell Background Colour
smenuBackgroundImg = ""                 // Cell Background 
smenuHoverBackground = "#ffa569"           // Cell Background Colour on mouse rolloverr
smenuHoverBackgroundImg = ""            // Cell Background on mouse rollover
sfontFace = "arial"                        // Font Face
sfontColour = "#FFFFFF"                    // Font Colour
sfontHoverColour = "#FFFFFF"               // Font Colour on mouse rollover
sfontSize = "10pt"                          // Font Size
sfontDecoration = "none"                   // Style of the link text (none, underline, overline, line-through)
sfontWeight = "normal"                     // Font Weight (normal, bold)
sShadow = 1




