You're on the right track. To only show one at a time, simply store
the last one open in a variable and close it before opening the new
one, here's an example:

var currOpen;
$("scTopNavList a").click(function(){
   if(currOpen) currOpen.hide("fast");
   currOpen = $(this.href);
   currOpen.show("fast");
   return false;
});

~Sean

Reply via email to