/**
 * Javascript for Default Theme
 */
$(document).ready(function(){
    $("ul.sf-menu").supersubs({
        minWidth:    11,                                // minimum width of sub-menus in em units
        maxWidth:    35,                                // maximum width of sub-menus in em units
        extraWidth:  1                                  // extra width can ensure lines don't sometimes turn over
    }).superfish({
        pathClass:     'current', // the class you have applied to list items that lead to the current page 
        delay:       400,                               // delay on mouseout
        animation:   {opacity:'show',height:'show'},    // fade-in and slide-down animation

        speed:       'fast',                            // faster animation speed
        autoArrows:  true,                             // disable generation of arrow mark-up
        dropShadows: false                              // disable drop shadows
    });
// navigation add subfish to indicate more navigation 
        $('.sf-menu li li:has(ul) > li').addClass('selected');
});
