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);
})

}
link|improve this question
1  
(Off-topic) I like the design! Very nice and minimalistic. I personally wouldn't open the menu on mouseover though - it makes things pretty hectic. – Pekka Jun 8 '11 at 20:15
@Pekka Thanks! I agree it gets a bit nuts with all the opening and moving. I'm hoping that when my problem is fixed, having only one menu section open at a time will make it less hectic. We'll see. If not, I'll go back to open on click. – Kyle.Tate Jun 8 '11 at 20:59
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.