$(document).ready(function(){
    $("a[rel^='prettyPhoto']").prettyPhoto({
        animationSpeed: 'slow', /* fast/slow/normal */
        padding: 50, /* padding for each side of the picture */
        opacity: 0.5, /* Value betwee 0 and 1 */
        showTitle: true, /* true/false */
        allowresize: false, /* true/false */
        counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
        theme: 'dark_rounded', /* light_rounded / dark_rounded / light_square / dark_square */
        callback: function(){}
    });
    
    var i = 0;
    $('#banner').html('<img src="/banner/' + imagensBanner[i] + '" />');
    setInterval(function () {
        if (imagensBanner.length > i+1) {
            i++;
        } else {
            i--;
        }
        $('#banner').html('<img src="/banner/' + imagensBanner[i] + '" />');
    }, 3000);
    
    //$("#caixa_cliente:first").css("background","#C9D0DA");
});

function AbreJanela(URL, Nome, Simeon)
{ 
    window.open(URL, Nome, Simeon);
    return false;
}
