$(document).ready(function(){

    $("#h, #s, #f, #t, #b").fadeTo("slow", 0.5);
    $("#h, #s, #f, #t, #b").hover(function(){
        $(this).stop().fadeTo("slow", 1.0);
        },function(){
        $(this).stop().fadeTo("slow", 0.5);
    }); 
});

$(document).ready(function(){
    $("#img1, #img2, #img3, #img4").fadeTo("slow", 0.3);
    $("#img1, #img2, #img3, #img4").hover(function(){
        $(this).stop().fadeTo("slow", 1.0);
        },function(){
        $(this).stop().fadeTo("slow", 0.3);
    }); 
});


