$(document).ready(function(){
    $('.Moldura').cycle({ 
        fx:     'fade', 
        timeout: 6000,
        pager:  '.Nav' 
    });
    $('.En').click(function(){
        $('body').translate('en',{toggle:true, not:'.notranslate'});
        $.getJSON('pages/idioma/2');
    });
    $('.Br').click(function(){
        $('body').translate('pt-br',{toggle:true, not:'.notranslate'});
        $.getJSON('pages/idioma/1');
    });
    $('.Es').click(function(){
        $('body').translate('es',{toggle:true, not:'.notranslate'});
        $.getJSON('pages/idioma/3');
    });
    $.getJSON('pages/idioma',function(data){
        if(data==1){
            $('.Br').click();
        }
        if(data==2){
            $('.En').click();
        }
        if(data==3){
            $('.Es').click();
        }
    }); 
});
