$(document).ready(function(){
    $('#column ul li a').first().css('border-top', '0');
    $('#column ul li a').last().css('border-bottom', '0');
});

$(document).ready(function(){
    $("#column ul li a").hover(function() {
        $(this).animate({ backgroundColor: "#F9F9F9" }, 100);
    },function() {
        $(this).animate({ backgroundColor: "#FFFFFF" }, 100);
    });
    
    $("#header_right ul li a").hover(function() {
        $(this).animate({ color: "#99CD46" }, 100);
    },function() {
        $(this).animate({ color: "#585858" }, 100);
    });
});



