<!--

<!--

/*
Actual production version for Ballroom Step By Step - June 2001
Configure menu styles below
NOTE: To edit the link colors, go to the STYLE tags and edit the ssmItems colors
*/
YOffset=150; // controls distance from top no quotes!!
staticYOffset=20; // no quotes!!
XOffset=0; // controls distance from left no quotes!!
slideSpeed=20 // no quotes!!
waitTime=500; // no quotes!! this sets the time the menu stays out for after the mouse goes off it.
menuBGColor="black";
menuIsStatic="yes";
menuWidth=200; // Must be a multiple of 10! no quotes!!
menuCols=2; // The max number of columns
hdrFontFamily="verdana";
hdrFontSize="2";
hdrFontColor="#CC9900";
hdrBGColor="black";
hdrAlign="center"; // Alignment can be: left, center, right
hdrVAlign="center";
hdrHeight="20";
linkFontFamily="Verdana";
linkFontSize="2";
linkBGColor="#CC9900";
linkOverBGColor="white"; // was #0099FF
linkTarget="_top";
linkAlign="center";
barBGColor="#CC9900";
barFontFamily="Verdana";
barFontSize="5";
barFontColor="black";
barVAlign="center";
barWidth=25; // no quotes!!
barText='MENU' // <IMG> tag supported, Ex: '<img src="some.gif" border=0>'

// ssmItems[...]=[name, link, target, colspan, endrow?] - leave 'link' and 'target' blank to make a header
// leave 'link' and 'target' blank to make a header
addHdr("Dance Instruction");
addHdr("");
//addItem("Groups / Practices / Socials", "classes.htm", "mainFrame");
addItem("Compare Us", "compare.htm", "mainFrame", 1, "no");         //Column 1 of 2 - Row 1 of 1
addItem("Contact Us", "contact.htm", "mainFrame", 1, "yes");   //Column 2 of 2 - Row 1 of 1
addItem("Credentials", "credentials.htm", "mainFrame", 1, "no");
addItem("Credits", "credits.htm", "mainFrame", 1, "yes");
addItem("FAQ's", "faqs.htm", "mainFrame", 1, "no");
addItem("Friends", "friends.htm", "mainFrame", 1, "yes");      
addItem("Gallery", "gallery.htm", "mainFrame", 1, "no");
addItem("Lessons", "lessons.htm", "mainFrame", 1, "yes");      
addItem("Testimonials", "testimonials.htm", "mainFrame", 1, "no");
addItem("Weddings", "weddings.htm", "mainFrame", 1, "yes");      
addItem("Welcome", "welcome.htm", "mainFrame", 1, "no");
addItem("Why Dancing?", "whydancing.htm", "mainFrame", 1, "yes");

// how to do a single column = addItem("Why Dancing?", "whydancing.htm", "mainFrame");


buildMenu();

//-->
//-->