
// jQuery Fade

$(document).ready(function(){
$(".jqfade").fadeTo(0,1.0);
$(".jqfade").hover(function(){
        $(this).fadeTo(150,0.5);
    },
    function(){
        $(this).fadeTo(300,1.0);
    });
});