$(function(){
    $('#top-nav .current').prev().css('background-image', 'none');
    $('#top-nav ul li').hover(function(){
        $(this).prev().css('background-image', 'none');
    }, function(){
        if(!$(this).prev().hasClass('current')){
            $(this).prev().css('background-image', 'url(/images/layout/nav_pipe.jpg)');
        }
    });
    if($('#news').height() >= $('#alert').height()){
        $('#alert').height($('#news').height()-30);
    }
    if($('#updates').height() >= $('#alert').height()){
        $('#alert').height($('#updates').height()-30);
    }
});