$(function() {
    $("#footer a").hover(function() {
        
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 0px)", color: "#fff" }, 300);
    
    }, function() {
    
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 100px)", color: "#0099FF" }, 300);
    
    });
 
});
$(function() {
    $("#pankuzu a").hover(function() {
        
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 0px)", color: "#fff" }, 300);
    
    }, function() {
    
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 100px)", color: "#0099FF" }, 300);
    
    });
 
});
$(function() {
    $("#hasei-beta a").hover(function() {
        
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 0px)", color: "#fff" }, 300);
    
    }, function() {
    
        $el = $(this);
        $el.stop().animate({ backgroundPosition: "(0px 100px)", color: "#0099FF" }, 300);
    
    });
 
});
