$(document).ready(function(){

// Fade
$("#content a img").bind("mouseenter", function() {
    $(this).stop().fadeTo(800, 1);
});
$("#content a img").bind("mouseleave", function() {
    $(this).stop().fadeTo(800, 0.4);
});

});

