 $(document).ready(function() {

    // initialize tooltip
    $("#nibblets img[title]").tooltip({

        // use single tooltip element for all tips
        tip: '#nibbletBubble',

        // tweak the position
        offset: [-10, 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
        }
    });





    // initialize tooltip
    $(".menu li a[title]").tooltip({

        // use single tooltip element for all tips
        tip: '#tooltip',

        // tweak the position
        position: "bottom",

        offset: [-40, -77],


        // use "slide" effect
        effect: 'fade',
        fadeInSpeed: 600,
        fadeOutSpeed: 600

    // add dynamic plugin
    }).dynamic( {

        // customized configuration on bottom edge
        bottom: {

            // slide downwards
            direction: 'down',

            // bounce back when closed
            bounce: true
        }
    });

});



