var lvReady = false;
document.observe('lightview:loaded', function() {
    lvReady = true;
});

function showLV(content, titulo){
    if(titulo == null){
        titulo = "Mensagem";
    }

    if(lvReady) {
        jQuery('#lview').html(content);
        Lightview.show({
            href: '#lview',
            rel: 'inline',
            title: titulo,
            options: {
                autosize: true,
                topclose: true
            }
        });
    } else {
        document.observe('lightview:loaded', function() {
            showLV(content, titulo);
        });
    }    
}

jQuery(document).ready(function(){
    jQuery("#conteudo").corner("round 10px");
    jQuery("#conteudoInteiro").corner("round 10px");
    jQuery("#noticia").corner("round 10px");
});
