$(document).ready(function(){
$("img.data").fadeTo(1,0.7);
$("img.data").hover(function(){
        $(this).fadeTo(200,1.0);
    },
    function(){
        $(this).fadeTo(200,0.7);
    });
});
