// JavaScript Document
var sitemap = 1;
var login = false;
var registreSe = false;
var participe = false;
var inscricoes = false;


$(document).ready(function () {
	
	/* CONTROLE SITEMAP */
	$('ul.sitemap_body li:even').addClass('alt');
	$('img.sitemap_head').click(function () {
		if (login == true) {
			$('#login').fadeOut('fast');
			login = false;
		}
		if (registreSe == true) {
			$('#registreSe').fadeOut('fast');
			registreSe = false;
		}
		if (participe == true) {
			$('#participe').fadeOut('fast');
			participe = false;
		}
		
		$('ul.sitemap_body').slideToggle('medium');
		sitemap = sitemap * (-1);
	});
	
	$('#texto_sitemap').click(function () {
		if (login == true) {
			$('#login').fadeOut('fast');
			login = false;
		}
		if (registreSe == true) {
			$('#registreSe').fadeOut('fast');
			registreSe = false;
		}
		if (participe == true) {
			$('#participe').fadeOut('fast');
			participe = false;
		}
		
		$('ul.sitemap_body').slideToggle('medium');
		sitemap = sitemap * (-1);
	});
			
	/* CONTROLE SEARCH */
	$('#SearchSearch').click(function () {
		$('#SearchSearch').val('');
	});
	
	$('#SearchButton').click(function () {
		$('#SearchIndexIndexForm').submit();
	});
		
	/* CONTROLE MENUTOP LOGIN */
	$('#login_img').click(function () {
		var mudancaEstado;
		if (registreSe == true) {
			$('#registreSe').fadeOut('fast');
			registreSe = false;
		}
		if (participe == true) {
			$('#participe').fadeOut('fast');
			participe = false;
		}
		if (sitemap == -1) {
		$('ul.sitemap_body').slideToggle('fast');
		sitemap = 1;
		}
		
		if (login == false) {
			$('#login').fadeIn('slow');
			mudancaEstado = true;
		}
		else {
			mudancaEstado = false;
		}
		
		if (login == true && mudancaEstado == false) {
			$('#login').fadeOut('slow');
			login = false;
			delete mudancaEstado;
		}
		else if (login == false && mudancaEstado == true) {
			login = true;
			delete mudancaEstado;
		}
	});
		
	$('#fecha_login').click(function () {
		$('#login').fadeOut('slow');
		login = false;
	});
	
	/* CONTROLE MENUTOP REGISTRESE */
	$('#registreSe_img').click(function () {
		var mudancaEstado;
		if (login == true) {
			$('#login').fadeOut('fast');
			login = false;
		}
		if (participe == true) {
			$('#participe').fadeOut('fast');
			participe = false;
		}
		if (sitemap == -1) {
		$('ul.sitemap_body').slideToggle('fast');
		sitemap = 1;
		}
		
		if (registreSe == false) {
			$('#registreSe').fadeIn('fast');
			mudancaEstado = true;
		}
		else {
			mudancaEstado = false;
		}
		
		if (registreSe == true && mudancaEstado == false) {
			$('#registreSe').fadeOut('slow');
			registreSe = false;
			delete mudancaEstado;
		}
		else if (registreSe == false && mudancaEstado == true) {
			registreSe = true;
			delete mudancaEstado;
		}
	});
		
	$('#fecha_registreSe').click(function () {
		$('#registreSe').fadeOut('slow');
		registreSe = false;
	});
	
	/* CONTROLE MENUTOP PARTICIPE */
	$('#participe_img').click(function () {
		var mudancaEstado;
		if (login == true) {
			$('#login').fadeOut('fast');
			login = false;
		}
		if (registreSe == true) {
			$('#registreSe').fadeOut('fast');
			registreSe = false;
		}
		if (sitemap == -1) {
			$('ul.sitemap_body').slideToggle('fast');
			sitemap = 1;
		}
		
		if (participe == false) {
			$('#participe').fadeIn('fast');
			mudancaEstado = true;
		}
		else {
			mudancaEstado = false;
		}
		
		if (participe == true && mudancaEstado == false) {
			$('#participe').fadeOut('slow');
			participe = false;
			delete mudancaEstado;
		}
		else if (participe == false && mudancaEstado == true) {
			participe = true;
			delete mudancaEstado;
		}
	});

	$('#fecha_participe').click(function () {
		$('#participe').fadeOut('slow');
		participe = false;
	});

});
