	$(function() {
    $("#link_bg a").hover(function() {
        
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 0px)", color: "#ffffff" }, 300);
    
    }, function() {
    
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 100px)", color: "#6f6f6f" }, 500);
    
    });

});
