$(document).ready(function() {

    // initialize tooltip     
    $("#sideSubNaviToolTip a[title]").tooltip({

        // use single tooltip element for all tips         
        tip: '#sideToolTipWebsyn',
        

        // tweak the position         
        offset: [80, 200],

        // use "slide" effect         
        effect: 'slide'

        // add dynamic plugin      
    }).dynamic({

        // customized configuration on bottom edge         
        bottom: {

            // slide downwards             
            direction: 'left',

            // bounce back when closed             
            bounce: true
        }
    });
});
