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


//If something is not specified, it should use the defaults
//JAD - couldn't start with table 1 for some reason - kept getting a black background
//example
menu[1] = {                         //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu1',                         //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'90%',            // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
KeepInView:80,                      // For left and right menus and only with KeepViewType:'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.
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
BarWrap:true,                       // extend and wrap bar below menu for a more solid look (default false) - will revert to false for top menu
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:100,                     // linked horizontal cell height
LinkTopPad:0,                       // linked horizontal cell top padding
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
d_colspan:3,                        // Available columns in menu body as integer
user_defined_stylesheet:false,      //if true, prevents script from generating stylesheet for this menu
user_defined_markup:false,          //if true, prevents script from generating markup for this menu
design_mode:false,                  //if true, generates a report of the script generated/intended styles and markup (as a design aid)
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
KeepViewType:'fixed',               // The method of KeepInView 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
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
OuterBorderWidth:'0ex 0ex 0ex 0ex', // outer border width (top right bottom left)
OuterBorderColor:'red',       // outer border color
OuterBorderStyle:'none',            // outer border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
LinkDefaultTarget:'',               // default link target, leave blank for same window (other choices: _new, _top, or a window or frame name)
/////////////////////////////////////

// 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
[""],                               //create header
["What's New", "http://www.dynamicdrive.com/new.htm",""],
["FAQ", "http://www.dynamicdrive.com/faqs.htm", "", 1, "no"], //create two column row, requires d_colspan:2 (the default)
["Email", "http://www.dynamicdrive.com/contact.htm", "",1],
["", "", "_new"],
[""]              //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Black Sheep Theatre Coalition
menu[2] = {                         //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu2',                         //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'8%',            // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:222,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"BlackSheep/logo_Blacksheep.gif\" width=129 height=218 border=1 title=\"Black Sheep Theatre Coalition\" />", "http://www.blacksheeptheatre.org", "_new"],
["Black Sheep Theatre Coalition"]   //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Blackfriars Theatre
menu[3] = {                         //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu3',                         //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'12%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:125,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"Blackfriars/logo_Blackfriars.gif\" width=129 height=121 border=1 title=\"Blackfriars Theatre\" />", "http://www.blackfriars.org", "_new"],
["Blackfriars Theatre"]             //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Bristol Valley Theater
menu[4] = {                         //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu4',                         //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'16%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:75,                      // linked horizontal cell height
LinkTopPad:22,                      // linked horizontal cell top padding
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"BristolValley/logo_BristolValley.gif\" width=129 height=48 border=1 title=\"Bristol Valley Theater\" />", "http://www.bristolvalleytheater.org", "_new"],
["Bristol Valley Theater"]          //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Downstairs Cabaret Theatre
menu[5] = {                         //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu5',                         //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'20%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:150,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"DownstairsCabaret/logo_DCT.gif\" width=129 height=145 border=1 title=\"Downstairs Cabaret Theatre\" />", "http://www.downstairscabaret.com", "_new"],
["Downstairs Cabaret Theatre"]      //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Geomantics Dance Theater
menu[6] = {                         //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu6',                         //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'24%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:75,                      // linked horizontal cell height
LinkTopPad:22,                      // linked horizontal cell top padding
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"Geomantics/logo_Geomantics.gif\" width=129 height=50 border=1 title=\"Geomantics Dance Theater\" />", "http://www.geomanticsdancetheater.org", "_new"],
["Geomantics Dance Theater"]        //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Geva Theatre Center
menu[7] = {                         //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu7',                         //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'28%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:245,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"Geva/logo_Geva.gif\" width=129 height=243 border=1 title=\"Geva Theatre Center\" />", "http://www.gevatheatrecenter.org", "_new"],
["Geva Theatre Center"]             //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Greater Rochester Repertory Companies
menu[8] = {                         //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu8',                         //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'32%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:80,                      // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"GRRC/logo_GRRC.gif\" width=127 height=74 border=1 title=\"Greater Rochester Repertory Companies\" />", "http://www.grrctheatre.org", "_new"],
["Greater Rochester Repertory Companies"] //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Irondequoit Theatre Guild
menu[9] = {                         //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu9',                         //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'36%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:134,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"Irondequoit/logo_Irondequoit.png\" width=129 height=130 border=1 title=\"Irondequoit Theatre Guild\" />", "http://www.irondequoittheatreguild.org", "_new"],
["Irondequoit Theatre Guild"]       //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//JCC CenterStage
menu[10] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu10',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'40%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:75,                      // linked horizontal cell height
LinkTopPad:20,                      // linked horizontal cell top padding
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"JCCCenterstage/logo_Centerstage.gif\" width=129 height=56 border=1 title=\"JCC CenterStage\" />", "http://www.jccrochester.org/NewWebsite/centerstage.html", "_new"],
["JCC CenterStage"]                 //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Kalidas
menu[11] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu11',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'44%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:50,                      // linked horizontal cell height
LinkTopPad:20,                      // linked horizontal cell top padding
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"Kalidas/logo_Kalidas.gif\" width=129 height=13 border=1 title=\"Kalidas\" />", "http://www.kalidastheater.org", "_new"],
["Kalidas"]                         //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





////Mercury Opera Rochester
//menu[11] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
//id:'menu11',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
///////////////////////////////////////
/////////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
///////////////////////////////////////
//MenuInitLeftOffset:'44%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
//MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
//MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
//MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
//BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
//InnerBorderWidth:2,                 // inner border width
//HeadingHeight:25,                   // heading (non-linked horizontal cell) height
//HeadingWidth:131,                   // heading (non-linked horizontal cell) width
//HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
//LinkHeight:75,                      // linked horizontal cell height
//LinkTopPad:20,                      // linked horizontal cell top padding
//AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
///////////////////////////////////////
/////////////// quote these properties: ////////////
///////////////////////////////////////
//MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
//MenuFont:'verdana',                 // menu font
//MenuFontSize:'100%',                // express as percentage with the % sign
//BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
//BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
//BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
//BarTextColor:'white',               // bar (the non-hidden cell) text color
//BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
//InnerBorderColor:'black',           // inner border color
//InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
//HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
//HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
//HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
//HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
//HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
//LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
///////////////////////////////////////
//menuItems:[                         // REQUIRED!!
////[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
//[""],                               //create header
//["<img src=\"MercuryOpera/logo_MercuryOpera.gif\" width=129 height=56 border=1 title=\"Mercury Opera Rochester\" />", "http://www.mercuryoperarochester.org", "_new"],
//["Mercury Opera Rochester"]         //no comma after last entry
//]};                                 //REQUIRED!! do not edit or remove





//Method Machine
menu[12] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu12',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'48%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:118,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"MethodMachine/logo_MethodMachine.gif\" width=129 height=113 border=1 title=\"Method Machine\" />", "http://www.methodmachine.org", "_new"],
["Method Machine"]                  //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Off-Monroe Players
menu[13] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu13',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'52%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:100,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"Off-MonroePlayers/logo_OMPLogoNoText.gif\" width=127 height=96 border=1 title=\"Off-Monroe Players\" />", "http://www.off-monroeplayers.org", "_new"],
["Off-Monroe Players"]              //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Out of Pocket Productions
menu[14] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu14',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'56%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:80,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"OutOfPocket/logo_Outofpocket.gif\" width=129 height=75 border=1 title=\"Out of Pocket Productions\" />", "OutOfPocket/ROCetteOOP.html", "_new"],
["Out of Pocket Productions"]       //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Penfield Players
menu[15] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu15',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'60%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:75,                      // linked horizontal cell height
LinkTopPad:10,                      // linked horizontal cell top padding
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"PenfieldPlayers/logo_Penfieldstacked.gif\" width=129 height=62 border=1 title=\"Penfield Players\" />", "http://www.penfieldplayers.org", "_new"],
["Penfield Players"]                //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Pittsford Musicals
menu[16] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu16',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'64%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:133,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:90,                      // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"PittsfordMusicals/logo_PittsfordMusicals.gif\" width=129 height=86 border=1 title=\"Pittsford Musicals\" />", "http://www.pittsfordmusicals.org", "_new"],
["Pittsford Musicals"]              //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//PUSH Physical Theatre
menu[17] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu17',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'68%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:105,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"PUSHPhysicalTheatre/logo_PUSH.gif\" width=129 height=100 border=1 title=\"PUSH Physical Theatre\" />", "http://www.pushtheatre.org", "_new"],
["PUSH Physical Theatre"]           //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//RAPA
menu[18] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu18',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'72%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:100,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"RAPA/logo_rapa.gif\" width=129 height=95 border=1 title=\"RAPA\" />", "http://www.rapaonline.us", "_new"],
["RAPA"]                            //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Rochester Children's Theatre
menu[19] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu19',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'76%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:143,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"RochesterChildrensTheatre/logo_RCT.jpg\" width=129 height=139 border=1 title=\"Rochester Children's Theatre\" />", "http://www.rochesterchildrenstheatre.org", "_new"],
["Rochester Children&rsquo;s Theatre"]    //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Rochester Community Players
menu[20] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu20',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'80%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:75,                      // linked horizontal cell height
LinkTopPad:22,                      // linked horizontal cell top padding
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"RochesterCommunityPlayers/logo_RCP.gif\" width=129 height=36 border=1 title=\"Rochester Community Players\" />", "http://www.rochestercommunityplayers.org", "_new"],
["Rochester Community Players"]     //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//TYKEs
menu[21] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu21',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'84%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:117,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"TYKEs/logo_TYKEscolor.jpg\" width=129 height=113 border=1 title=\"TYKEs\" />", "http://www.tykestheatre.org", "_new"],
["TYKEs"]                           //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Unleashed! Improv
menu[22] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu22',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'88%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:75,                      // linked horizontal cell height
LinkTopPad:5,                       // linked horizontal cell top padding
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"Unleashed/logo_Unleashed.gif\" width=127 height=64 border=1 title=\"Unleashed! Improv\" />", "http://www.unleashedimprov.com", "_new"],
["Unleashed! Improv"]               //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Village Idiots
menu[23] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu23',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'92%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:75,                      // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"VillageIdiots/logo_VillageIdiots.gif\" width=127 height=70 border=1 title=\"Village Idiots\" />", "http://www.improvVIP.com", "_new"],
["Village Idiots"]                  //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove





//Webster Theatre Guild
menu[23] = {                        //REQUIRED!!  This menu explicitly declares all available options even if they are the same as the defaults
id:'menu23',                        //REQUIRED!! use unique quoted id (quoted) REQUIRED!!
/////////////////////////////////////
///////////// no quotes for these properties (numbers represent pixels unless otherwise noted): ////////////
/////////////////////////////////////
MenuInitLeftOffset:'92%',           // initial left offset - only for top menu, as pixels (can be a quoted percentage - ex: '50%')
MenuInitTopOffset:0,                // initial top offset - except for top menu, where it is meaningless
MenuSlideSpeed:20,                  // Speed of menu sliding - smaller is faster (interval of milliseconds)
MenuSlidePause:500,                 // How long menu stays out when mouse leaves it (in milliseconds)
BarWidth:20,                        // bar (the non-hidden cell) width (this will be bar height for a top menu)
InnerBorderWidth:2,                 // inner border width
HeadingHeight:25,                   // heading (non-linked horizontal cell) height
HeadingWidth:131,                   // heading (non-linked horizontal cell) width
HeadingTextIndent:0,                // heading (non-linked horizontal cell) text-indent represents ex units (@8 pixels decimals allowed)
LinkHeight:132,                     // linked horizontal cell height
AllowTransparent:false,             // allow page to show through menu if other bg's are transparent or border has gaps
/////////////////////////////////////
///////////// quote these properties: ////////////
/////////////////////////////////////
MenuPosition:'top',                 // set side that menu slides in from (right or left or top)
MenuFont:'verdana',                 // menu font
MenuFontSize:'100%',                // express as percentage with the % sign
BarText:' ',                        // bar (the non-hidden cell) text - use text or img tag
BarTextFontWeight:'bold',           // bar (the non-hidden cell) font weight
BarTextAlign:'left',                // bar (the non-hidden cell) text right left or center alignment
BarTextColor:'white',               // bar (the non-hidden cell) text color
BarBgColor:'#FBB917',               // bar (the non-hidden cell) background color
InnerBorderColor:'black',           // inner border color
InnerBorderStyle:'solid',           // inner border style (solid, dashed, inset, etc.)
HeadingTextFontWeight:'',           // heading (non-linked horizontal cell) font weight
HeadingTextAlign:'center',          // heading (non-linked horizontal cell) text right left or center alignment
HeadingTextColor:'maroon',          // heading (non-linked horizontal cell) text color
HeadingVerticalAlign:'middle',      // heading (non-linked horizontal cell) vertical align (top, middle or center)
HeadingBgColor:'#D4A017',           // heading (non-linked horizontal cell) background color
LinkTextAlign:'center',             // linked horizontal cell text right left or center alignment
/////////////////////////////////////
menuItems:[                         // REQUIRED!!
//[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
[""],                               //create header
["<img src=\"WebsterTheatreGuild/logo_WTG.gif\" width=129 height=128 border=1 title=\"Webster Theatre Guild\" />", "http://www.webstertheatreguild.org", "_new"],
["Webster Theatre Guild"]           //no comma after last entry
]};                                 //REQUIRED!! do not edit or remove

////////////////////Stop Editing/////////////////

make_menus();
