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