

        
    $(document).ready(function(){
        $(".FadeRollover").css({ opacity: 0.3 });
        $(".FadeRollover").hover(function(){
            $(this).fadeTo("1000", 1.0);
            },function(){
            $(this).fadeTo("1000", 0.3);
        });
        $(".FadeRolloverLight").css({ opacity: 0.6 });
        $(".FadeRolloverLight").hover(function(){
            $(this).fadeTo("1000", 1.0);
            },function(){
            $(this).fadeTo("1000", 0.6);
        });
    });
    
    
    

