$(document).ready(function() {
        $('#socialbar a').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 0.7 }, 250);
            },
           function() {
               $(this).stop().animate({ opacity: 1 }, 250);
           });
        });
});

$(document).ready(function() {
        $('a.rssbtn').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ paddingRight: "30px" });
            },
           function() {
               $(this).stop().animate({ paddingRight: "5px" });
           });
        });
});  
