$(document).ready(function() {
    if(!$.browser.msie || ($.browser.msie && parseInt($.browser.version) >= 7)) {
        $("#logo img:not(.act)").fadeTo("fast", 0.5);
        $("#logo img:not(.act)").hover(function(){
            $(this).fadeTo("normal", 1.0);
        },function(){
            $(this).fadeTo("normal", 0.5);
        });
     }
});
