/***********************************************
* Omni Slide Menu script - © John Davenport Scheuer
* very freely adapted from Dynamic-FX Slide-In Menu (v 6.5) script- by maXimus
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full original source code
* as first mentioned in http://www.dynamicdrive.com/forums
* username:jscheuer1
***********************************************/

//One global variable to set, use true if you want the menus to reinit when the user changes text size (recommended):
resizereinit=true;

menu[1] = {
id:'menu1', //use unique quoted id (quoted) REQUIRED!!

bartext:"<img src=img/plus.gif>", // Text for 'draw' bar.  Quoted <img> tag may be used, ex: bartext:'<img src="my_bar.gif">',
barbgcolor:"transparent",
borderwidth:0, // Border width used inside menus and for menu table (unquoted number without units referring to pixels)
outbrdwidth:0, // If an outer border (for the containing division) is desired, this will be its width. A single unquoted pixel value without units or quoted top right bottom left values may be used, ex: outbrdwidth:5, or outbrdwidth:'5px', or outbrdwidth:'2px 3px 2px 5px',

outbrdcolor:"green",  // Outer border color
outbrdstyle:"none",  // Outer border style ('solid', 'dashed', 'outset', etc.)

menupos:"top",  // Menu position - left, top, or right
keepinview:30,  // For left and right menus and only with kviewtype:'absolute', - distance from top after page has scrolled beyond menutop - may optionally be set to true or false.  Using true will have the menu maintain its menutop position during page scroll, false will prevent the menu from following page scroll.  Top menus will always follow page scroll.
kviewtype:'absolute',  // The method used to keep menu visible when page is scrolled - 'fixed' or 'absolute'. Fixed will not appear to move at all, staying completely stationary in relation to the window's frame, while 'absolute' will follow scrolling in a fluid motion: defaults to 'absolute' (floating) unless menu is top menu. 'fixed' is overridden in browsers that do not support it.  For a menu that appears in the normal flow of the page, use 'absolute' here and false for keepinview (see previous).

menutop:10,  // For left and right menus only, the initial distance from the top of the page
menuleft:118,  // For top menu only, initial left position.  May be an unquoted number referring to pixels or a quoted percentage value.ex: menuleft:400, - for pixels, no units or quotes used  or menuleft:'45%' - quotes and percent sign for % value
wrapbar:false,  // For left and right menus only, will wrap the 'draw' bar around the bottom of the menu if true

menuspeed:20,  // Speed of menu sliding, smaller is faster (interval of milliseconds)
menupause:1000,  // How long menu stays extended when mouse is not over it (in milliseconds)
d_colspan:4,  // Number of columns to make available in the menu body
allowtransparent:true,  // Ordinarily, the table's bgcolor is the border color, use true here to make it transparent

barwidth:22,  // Width of 'draw' bar (this will be its height for the top menu The below hdingwidth plus (for left and right menus) the above barwidth and (2+d_colspan) times the borderwidth will be used for the table's width.

hdingwidth:200,  // This will be the menu body width as well as any single column headings.
hdingheight:6,  // Heading height
hdingindent:0,  // Text indent for headings.  Here 1=@8px or 1 character's width - decimals allowed.
linkheight:22,  // This will be the height for linked cells

bordercolor:"green",  // Border color used inside menus and for menu table
borderstyle:"none",  // Border style used inside menus and for menu table
barcolor:"green",  // Text color for 'draw' bar

barfontweight:"bold",  // Bar font weight
baralign:"left",  // Bar text align
menufont:"AvantGarde",  // Font for menu, use any you like, defaults to sans-serif if not supported
fontsize:"60%",  // Font size, use quoted percent value
hdingcolor:"white",  // Headings - text color
hdingbgcolor:"transparent",  // Headings - background color
hdingfontweight:"bold",  // Headings - font weight

hdingtxtalign:"left",  // Headings - text align
linktopad:0,  // Top padding for links
linktxtalign:"left",  // Links text align
linktarget:"_new",  // Default link target


user_defined_stylesheet:false,  // Set to true if you wish to override the script's stylesheet
user_defined_markup:false,  // Set to true if you wish to override the script's markup
design_mode:false,  // Set to true to see the generated styles and markup

// Finished configuration. Use default values for all other settings for this particular menu (menu[1]) ///

menuItems:[ // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header




["FF 3.1", "http://www.mozilla-europe.org/de/firefox/", "", 1, "no"],
["Safari 3.1","http://www.apple.com/de/safari/", "", 1, "no"],
["Chrome 0.2","http://www.google.com/chrome", "", 1, "yes"],
["/<img src=img/transparentpixel.gif>", "", ""], //create header

["english", "index.en.htm", "_self", 1, "no"], //create two column row, requires d_colspan:2 (the default)
["deutsch", "index.htm", "_self", 1,"no"],
["<img src=img/80x15.png rel=license alt=Creative Commons style=border-width:0>", "http://creativecommons.org/licenses/by-nc-nd/3.0/", "", 1,"no"],
["<img src=img/book_delicious.gif alt=TAG style=border-width:0 rel=delicious>", "http://delicious.com/search?p=klangkunst&u=&chk=&context=all&fr=del_icio_us&lc=0", "", 1, "yes"]  //no comma after last entry

]}; // REQUIRED!! do not edit or remove


make_menus();
