$(document).ready(function(){
    $("#menuLeft").treeview({
            collapsed: false,
            unique: true,
            animated: "medium",
            persist: "location"
    });
    $( '.collapsable' ).each( function (i){
        if( $( this ).find( '#selectedTop' ).length == 0 ){
            $( this ).attr( 'class', 'expandable' );
            var divHitArea = $( this ).find( '.hitarea collapsable-hitarea' ).get( 0 );
            $( divHitArea ).attr( 'class' , 'hitarea expandable-hitarea' );
            var subMenu = $( this ).find( '.submenuLeft' ).get( 0 );
            $( subMenu ).attr( 'style', 'display: none;' );
        }
    });
    $("ul.sf-menu").superfish({
            delay:       2000,          
            animation:   {opacity:'show',height:'show'},
            autoArrows:  true,
            dropShadows: false    
    });

});

