// JavaScript Document
$(document).ready(function() {
	
	/** INDEX **/
	
	$('div#Topo').append('<div id="topo-img"><a id="fenajufe" title="FENAJUFE" target="_BLANK" href="http://www.fenajufe.org.br">Teste</a></div>');
	$('div#sidebar h2').each(function() {
		var foo = $(this).html();
		$(this).html(' ');
		$(this).append('<span class="seta">' + foo + '</span>');
	});
	$('div#login form').append('<button>Entrar</button>');
	$('div#login').append('<a href="?secao=cadastro" id="sol">Solicitar Filia&ccedil;&atilde;o</a>');
	
	/** HOME **/
	$('ul#menu li a:first').attr('href', 'index.php');
	$('div.convenio').hide();
	$('div.conv1').show();
	$('button#bt-esq, button#bt-dir').click(function () {
		var n = Math.ceil($('div#convenios').attr('class')/4);
		if ($(this).attr('id') == 'bt-dir')
		{
			if ($(this).attr('class') <= n)
			{
				$('div.conv' + $(this).attr('class')).hide();
				$('div.conv' + (parseInt($(this).attr('class')) + 1)).fadeIn('slow');
				$('button#bt-esq, button#bt-dir').attr('class', (parseInt($(this).attr('class')) + 1));
			}
		}
		if ($(this).attr('id') == 'bt-esq')
		{
			if ($(this).attr('class') > 1)
			{
				$('div.conv' + $(this).attr('class')).hide();
				$('div.conv' + (parseInt($(this).attr('class')) - 1)).fadeIn('slow');
				$('button#bt-esq, button#bt-dir').attr('class', (parseInt($(this).attr('class')) - 1));
			}
		}
	});
	
	/** LISTA **/
	
	$('div.col1, div.col2, div.col3, div.col4').hover(function() {
		$(this).css('borderColor', '#a2a1a1');	
	}, function() {
		$(this).css('borderColor', '#cdcdcd');
	});
	
	/** SIDEBAR **/
	$('#form_login').submit(
		function(){
			$(this).ajaxSubmit({
				target: "#resposta",
				dataType:  'json',
				success: function(data, jqForm, options){
					$('#resposta').html(data.erros);
					if(data.act == true){
						$('#resposta').html('Entrando...');
						document.location = 'adm/index.php';
					}
				}	
			});
			return false;
	});
	
});
