I am working on an indexhibit site for my mom, and am having trouble with my drop down menu.
I want each section to collapse when I mouse off it, instead of staying open as the next section opens and invoking the dreaded scroll bar.
I also want the menu item to stay active/highlighted when that page is being viewed.
This is the offending site: http://www.janedancingwater.com
This is my .js for my menu:
function expandingMenu(num) {
var speed = 200;
var item_title = $("#menu ul").eq(num).children(":first");
var items = $("#menu ul").eq(num).children().filter(function (index) { return index > 0; });
/* hide items if not active */
if (items.is(".active") == false) {
items.hide();
}
/* add click functions + pointer to title */
item_title.css({cursor:"pointer"}).hover(
function () {
items.slideToggle(speed);
})
item_title.css({cursor:"pointer"}).toggle(
function () {
items.hide(speed);
}, function () {
items.show(speed);
})
}