$(document).ready(function(){
$("img.jhover").fadeTo(0,1.0);
$("img.jhover").hover(function(){
        $(this).fadeTo(170,0.7);
    },
    function(){
        $(this).fadeTo(130,1.0);
    });
});
