(function($){
    $(document).ready(function() {
        $('.hastooltip').wTooltip({
            className: 'tooltip',
            style: false, //we're styling it from style-rev.css
            offsetY: 15, //offsetY and offsetX properties designate position from the cursor
            offsetX: -100,
            follow: false//stationary tooltip
            //timeout: 1000//buggy
        });
    });
})(jQuery);
