/*
////////////////////////////////////////////////////////////////////////////////
	FUNÇÃO PARA ZEBRAR AS TR DAS TABELA DE SEMINOVOS
////////////////////////////////////////////////////////////////////////////////
*/

$(document).ready(function(){
						   
	$(".tabela tbody tr:odd").addClass("zebra");
	$(".tabela tbody tr").hover(
		  function () {
			  $(this).addClass("over");
		  },
		  function () {
			  $(this).removeClass("over");
		  }
		  );
});

/*
////////////////////////////////////////////////////////////////////////////////
	FUNÇÃO PARA O MOSTRA-ESCONDE
////////////////////////////////////////////////////////////////////////////////
*/

$(document).ready(function() {
						   
	$('dl.informacoes dd').hide();
	
	$('dl.informacoes dt').click(function () {
		if ($(this).find(":first").hasClass("minimizar")) {
			$(this).next().fadeOut("fast");
			$(this).find(":first").removeClass('minimizar');
			
		} else {
			
			$('dl.informacoes dd').fadeOut("fast");
			$('dl.informacoes dt').find(":first").removeClass('minimizar');
			$(this).next().fadeIn("normal");
			$(this).find(":first").addClass('minimizar');
			
		}
	});
});

/*
////////////////////////////////////////////////////////////////////////////////
	FUNÇÃO PARA AS GALERIAS
////////////////////////////////////////////////////////////////////////////////
*/

$(document).ready(function() {
						   
	if ( $('a[@rel*=lightbox]').length > 0 ) {
		$('a[@rel*=lightbox]').lightBox();
	}
});
