function init() {

    var pos = $j("#noticias_meio").offset().top+"px";
    $j("html").css("background", "url(imagens/bg_html.gif) 0 "+pos+" repeat-x");

}

function abrirJanela(url, width, height) {
    window.open(url,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='+width+',height='+height+'');
}

function getCidades( estado, alvo ) {

    $j.ajax({
        type: "GET",
        url: "scripts/cidade.php",
        data: "act=1&estado="+estado,
        beforeSend: function() {
            $j(eval(alvo)).empty().html("<option value=\"\">Carregando cidades desse Estado</option>");
        },
        success: function(result) {
            $j(eval(alvo)).empty().attr("disabled", false).html(result);
        }
    });

}
