jQuery(document).ready( function($) {  
    $("#youtube_href, #twitter_href, #vkontakte_href").each(function(){
        $(this).fadeTo(1, 0.7);
        $(this).hover(function () {
            $(this).fadeTo(300, 1);
          }, function () {
            $(this).fadeTo(300, 0.7);
        });
    });
})
