jQuery(function(){
    jQuery("#menu li").hover(function(){
            jQuery(this).addClass("hover").css({opacity:.7});
        },function(){
            jQuery(this).removeClass("hover").css({opacity:1});
    });

    //jQuery("li'#"+jQuery("#menu").attr('selecionado')).addClass('selecionado');

    jQuery('#corpo #conteudo #banner').flash({
        src: '/wp-content/themes/Souza2009/flash/home.swf',
        width: 880,
        height: 300,
        wmode: 'transparent'
    });
});