$(function () {
    $("#video-snippets a img").hover(function(){
    $(this).fadeTo("normal", 0.7);
    },function(){
    $(this).fadeTo("normal", 1.0); 
    });
});

$(function () {
    $("#video-content a img").hover(function(){
    $(this).fadeTo("normal", 0.7);
    },function(){
    $(this).fadeTo("normal", 1.0); 
    });
});

$(function () {
    $(".download a img").hover(function(){
    $(this).fadeTo("normal", 0.7);
    },function(){
    $(this).fadeTo("normal", 1.0); 
    });
});

