$(function() {
   $('a[@rel*=lightbox]').lightBox({
	overlayBgColor: '#FFF',
	overlayOpacity: 0.6,
	imageLoading: 'http://example.com/images/loading.gif',
	imageBtnClose: 'http://example.com/images/close.gif',
	imageBtnPrev: 'http://example.com/images/prev.gif',
	imageBtnNext: 'http://example.com/images/next.gif',
	containerResizeSpeed: 350,
	txtImage: 'Imagem',
	txtOf: 'de'
   });
});
 
	  function slide() {
	  if ($('#toggleSection').is(":hidden")) {
      $('#toggleSection').slideDown("slow");
      } else {
      $('#toggleSection').slideUp("fast");
      }
	  }


	function check_event(result) {
	$('#toggleSection').slideDown("slow");
	document.getElementById('toggleSection').innerHTML = result;
	}

	function get_event_id(i) {
	x_get_event_id(i, check_event);
	}
