window.addEvent('domready', function() {

    // enable smooth scroll
    new SmoothScroll({

        duration:700

    }, window);

    // enable fancy tooltips
    var mooTips = new Tips({

        showDelay:  100,
        hideDelay:  100,
        className:  'tooltips',
        offsets:    {'x': 16, 'y': 16},
        fixed:      false
//         'onShow':   function(tooltip) {
//                     },
//         'onHide':   function(tooltip) {
//                     }
    }, '.tooltip');

});


