$(document).ready(function() {
    // last-child and first-child don't work in certain browsers
    $('#header > ul > li:first').addClass('first-child');
    $('#header > ul > li:last').addClass('last-child');

    // dropdown menu hack for ie
    if ($.browser.msie) {
        $('#header > ul > li').hover(
            function() { $(this).addClass('hover'); },
            function() { $(this).removeClass('hover'); }
        );
    }

    // disable link on list items that have children
    $('#header > ul > li:has(ul) > a').click(function() {return false;});

    $('.home img').click(function () { alert('La video sera disponible prochainement');});

    // open links on target _blank
    $('.affiliates a').attr('target', '_blank');

    // scrollbars
    $('.jscrollpane').jScrollPane({
        scrollbarWidth: 14,
        scrollbarMargin: 14,
        showArrows: true
    });
}); 

