$(function(){
	///////////////////////
	// CABECALHO
	$('input#myCTJ_submit, input#busca_submit').attr('value', '');
	$('input#myCTJ_inputMatricula, input#myCTJ_inputSenha').focus(function(){
		$(this).attr('value', '');
	});
	$('input#myCTJ_inputMatricula, input#myCTJ_inputSenha').blur(function(){
		if( $(this).attr('value') == '' ) {
			prevValue = $(this).prev('label').text();
			$(this).attr('value', prevValue );
		}
	});

	////////////////////////
	// MENU e SUBMENU
	$('ul#menu li, ul#menu li#menu_entreCasa ul li#subCursos').hover(function(){
		$(this).css('z-index','10000000');
		$(this).children('ul').show();
	}, function(){
		$(this).css('z-index','10');
		$(this).children('ul').hide();
	});

	////////////////////////
	// BREADCRUMB
	$('div#breadcrumb ul li').not(':last-child').each( function(){
		$(this).html( $(this).html() + ' >' );
	});

	///////////////////////////////
	// FLASH REPLACEMENT
	$.sifr({path:'../fonts'});
	$('h1').sifr({font:'ctj.swf'});

	///////////////////////////////
	// MODAL
	$('div#modalCadastrese').jqm({trigger: 'a#triggerCadastrese, a#triggerCadastreseMeuEspaco'});
	$('div#modalSenha').jqm({trigger: 'a#triggerSenha, a#triggerSenhaMeuEspaco'});
	$('div#modalAmigo').jqm({trigger: 'a#triggerAmigo'});
	$('p#cadastre_unidade_select').click(function(){
		$('ul#cadastre_unidade_unidades').fadeIn();
	});
	$('ul#cadastre_unidade_unidades').hover(function(){
		$(this).show();
	},function(){
		$(this).fadeOut();
	});
	$('ul#cadastre_unidade_unidades li').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	}).click(function(){
		value_unidade = $(this).attr('id');
		texto_unidade = $(this).text();
		$('input#cadastre_unidade').attr('value', value_unidade );
		$('p#cadastre_unidade_select').html( texto_unidade );
		$(this).parent().hide();
	});

	///////////////////////////////
	// ENDERECOS E TELEFONES (Internas)
	$('div#enderecosTelefonesCTJ span').click(function(){
		$('div#enderecosTelefonesCTJ ul').fadeIn();
	});
	$('div#enderecosTelefonesCTJ ul').hover(function(){
		$(this).show();
	}, function(){
		$(this).fadeOut();
	});
});