// Penha D'Águia
$(document).ready(function(){

  if ($('#slideshow li').length > 1) {
    $('#slideshow').cycle({ timeout: 3500, height: 290 });
  }

  if ($('span.email').length > 0) {
    $('span.email').each(function(){
      var email = $(this).text().replace('[at]','@');
      $(this).html('<a href="mailto:'+ email +'">'+ email +'</a>');
    });
  }
  
  if ($('#produtos a').length > 0) {
    $('#produtos a').each(function(){
      $(this).attr({ rel: 'superbox[image]' });
    });
    $.superbox.settings = { loadTxt: "A carregar imagem...", closeTxt: "Fechar" };
    $.superbox();
  }
  
});