function twitter(user){
    jQuery(".twitter-feed .bottom").tweet({
        username: user,
        join_text: "auto",
        avatar_size: 50,
        count: 3,
        loading_text: "",
        auto_join_text_default: "",
        auto_join_text_ed: "",
        auto_join_text_ing: "",
        auto_join_text_reply: "",
        auto_join_text_url: ""
    });
}

function LabelFlash(texto, swf, largura, altura, link, cor, over) {

        var nomeContainer = 'container_' + Math.random();

        var html = '<div id="' + nomeContainer + '"><a style="color:#CCCCCC" href="' + link + '">' + texto + '</a></div>';
        document.write(html);

        var variaveis = "texto=" + texto + "&cor=" + cor + "&link=" + link + "&over=" + over;

        var     s1 = "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" \n";
                    s1 += "codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0\" \n";
                    s1 += "width=\"" + largura + "\" height=\"" + altura + "\" id=\"swf_" + nomeContainer + "\" >\n";
                    s1 += "<param name=\"allowScriptAccess\" value=\"always\" />\n";
                    s1 += "<param name=\"wmode\" value=\"transparent\" />\n";
                    s1 += "<param name=\"movie\" value=\"" + swf + ".swf\" />\n";
                    s1 += "<param name=\"quality\" value=\"high\" />\n";
                    s1 += "<param name=\"scale\" value=\"noborder\" />\n";
                    s1 += "<param name=\"salign\" value=\"lt\" />\n";
                    s1 += "<param name=\"flashvars\" value=\"" + variaveis + "\" />\n";
                    s1 += "<embed \n";
                        s1 += "src=\"" + swf + ".swf\" \n";
                        s1 += "quality=\"high\" \n";
                        s1 += "align=\"left\" \n";
                        s1 += "wmode=\"transparent\" \n";
                        s1 += "scale=\"noborder\" \n";
                        s1 += "width=\"" + largura + "\" \n";
                        s1 += "height=\"" + altura + "\" \n";
                        s1 += "name=\"swf_" + nomeContainer + "\" \n";
                        s1 += "salign=\"lt\" \n";
                        s1 += "allowScriptAccess=\"always\" \n";
                        s1 += "flashvars=\"" + variaveis + "\" \n";
                        s1 += "allowFullScreen=\"false\" \n";
                        s1 += "type=\"application/x-shockwave-flash\" \n";
                        s1 += "pluginspage=\"http://www.macromedia.com/go/getflashplayer\" \n";
                    s1 += "/>\n";
                s1 += "</object>\n";

        document.getElementById(nomeContainer).innerHTML = s1;


    }

