$(function() {

    $('#MSCareersOpenings div.MSMainPane tr:nth-child(even)').css({
        backgroundColor: '#eeeeee'
    });

    $('#MSNav'+MSNavTab).addClass('MSNavTabOn');

    $('a.MSNavTab').hover(function() {
        $(this).stop().animate({ marginLeft: '0px' },200,'swing');
    }, function() {
        if ( $(this).hasClass('MSNavTabOn') )
            return;

        $(this).stop().animate({ marginLeft: '-20px' },200,'swing');
    });


});
