$(document).ready(function(){
	$("#rnd,#corner,div").corner("20px");
	$("div.formulario #nvalor").each(function(){
		$(this).maskMoney({decimal:",", thousands:".",showSymbol:false});
	});
	$("div.content div.pesquisa #nvalor").each(function(){
		$(this).maskMoney({decimal:",", thousands:".",showSymbol:false});
	});
	
	$("div.formulario").each(function(){
		$(this).find("#data").mask("?99/99/9999");	
		$(this).find("#cpf").mask("999.999.999-99");
		$(this).find("#cnpj").mask("99.999.999/9999-99");	
		$(this).find("#cep").mask("99999-999");
		$(this).find("#telefone").mask("(99)9999-9999");
		$(this).find("#hora").mask("99:99");
	});
	$("div.home_pesquisa").each(function(){
		$(this).find("#data").mask("?99/99/9999");	
	});
	$("div.pesquisa").each(function(){
		$(this).find("#data").mask("?99/99/9999");
		$(this).find("#dataEx").mask("%%/%%/%%%%");	
	});
	
	$("div").find("ul#oculta").toggle();
	$("div.menu").find("ul.oculta[id=oculta_menu]").toggle();
	
	$("div.titulo").click(function(){
		$("div.menu").find("ul#oculta_menu:visible").toggle();
		$(this).next("ul#oculta_menu").toggle();
	});
	
	//Capturando o evento click
	$("#oculta").live("click",function(){
		$(this).next("ul#oculta").toggle();
	});
	//Alterando o cursor do mouse
	$("label#oculta").live("mouseover",function(){
		$(this).css("cursor","pointer");
		$(this).css("cursor","hand");
	});
	
	if ((screen.width<=800) && (screen.height<=600)) {
		
		$("div.formulario select").css("width","470px");
		$("div.home_header img").css("width","650px");
		$("div.home_header img").css("height","120px");
		$("div.home_header").css("width","756px");
		$("div.sub_content td").css("font-family","arial");
		$("div.sub_content td").css("font-size","9px");
		$("table.aluno_login input").attr("size","25");
		$("div.formulario textarea").attr("cols","75");
	}	
});


