
// setup navpanel
$(function() {
    var navlink = $('#navpanelLink a').attr('href');
    if (navlink) {
        $.get(navlink, function(data) {
            var d = $(data);
            d.find('a.otimes').empty();
            $('#nav_program_panel').html(d.find('#nav_program_panel').html());
            $('#nav_news_panel').html(d.find('#nav_news_panel').html());
            $('#nav_video_panel').html(d.find('#nav_video_panel').html());
            $('#nav_advocacy_panel').html(d.find('#nav_advocacy_panel').html());
            beautifyTooltips();
        }, 'html');
    }
});

// setup hover using jquery.hoverintent
$(function() {
    $('#homeNav ul li').hoverIntent(function() {
        $(this).addClass('hovered');
    }, function(){
        $(this).removeClass('hovered');
    });
});

// the tooltip to show the rest of the hidden video title
function beautifyTooltips() {
    $('.nav-panel .top-features ul li a').bt({
        animate: true,
        hoverIntentOpts: { interval: 100, timeout: 100 },
        fill: '#363636',
        cssStyles: { color: '#fff', fontSize: 'small', fontFamily: 'verdana, arial, sans-serif' }
    });
}

$(function() {
    beautifyTooltips();
});
