$(document).ready(function(){
    $(window).load(function(){
        $('#slider').nivoSlider({
            directionNav: false,
            controlNav: true
        });
    });
    $("#header_text table td ul li").hover(function(){
        $(this).find("a").css("color", "#455846");
        $(this).css("border-bottom", "1px solid #455846");
    }, function(){
        $(this).find("a").css("color", "#86ab88");
        $(this).css("border-bottom", "1px dashed #86ab88");
    });
    $("#divide a").hover(function(){
        $(this).css("color", "#36bd3c");
        $(this).css("border-bottom", "1px solid");
    }, function(){
        $(this).css("color", "#2d9332");
        $(this).css("border-bottom", "1px dashed");
    });
});

