// Initialize beautyTip
$(document).ready(function() {
    try {
        $("a.fbox").bt({
            showTip: function(box) {
                $(box).fadeIn(200);
            },
            hideTip: function(box, callback) {
                $(box).animate({ opacity: 0 }, 200, callback);
            },
            shrinkToFit: true,
            hoverIntentOpts: {
                interval: 100,
                timeout: 0
            },
            fill: 'rgb(4, 26, 86)', cssStyles: { color: '#FFF', fontWeight: 'bold' }
        });
    } catch(err) {
        // do nothing
    }
});

