Shadowbox.lang={code:"pt",of:"de",loading:"Carregando",cancel:"Cancelar",next:"Próximo",previous:"Anterior",close:"Fechar"};
Shadowbox.init({player:['html'],overlayColor:'#2E3D1D',overlayOpacity:0.6});

$(document).ready(function() {
    renderMenu();
    shadow('l_envie',500,340);
    shadow('l_contato',500,440);
    shadow('l_news',500,280);
    $(document).pngFix();
});
function shadow(cls, w_, h_){
    Shadowbox.setup("a."+cls, {modal:true,displayNav:false,width:w_,height:h_});
}
function renderMenu() {
  $('#menu ul').hide();
  $('#menu li a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('#menu ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
}
