$(document).ready(function() {
    setTimeout(function(){
        $('.msg_ok_site').hide();
        $('.msg_int').hide();
        $('.msg_err_site').hide();                
    }, 8000);
    clearTimeout();

});

$(document).click(function() {  
        $('.msg_ok_site').hide();
        $('.msg_int').hide();
        $('.msg_err_site').hide();    
});
function Abrir(){
    window.open(URL_SITE+"chat.php", "JANELA", "height = 330, width = 320");
    return false;
}

/* --JQUERY TRANSIÇÃO DE IMAGENS-- */

$(function(){
    $("a[rel=imgs]").fancybox({
        'transitionIn'		: 'elastic',
        'transitionOut'		: 'elastic',
        'titlePosition' 	: 'over',
        'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">Imagem ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
        }
    });
});

