$(document).ready(function(){
	$(".corner").corner("round 10px");
	$("#formulario #fmtValor").each(function(){
		$(this).maskMoney({decimal:",", thousands:".",showSymbol:false});
	});
	$("#formulario #numAgencia").each(function(){
		$(this).mask('9999');
	});
	$("#formulario #numConta").each(function(){
		$(this).mask('9999999');
	});
	$("#formulario #data").each(function(){
		$(this).mask('99/99');
	});
	
	if ((screen.width<=800) && (screen.height<=600)) {
		$("#pagina").css("width","600px");
		$("#topo").css("width","600px");
		$("#principal").css("width","360px");
		$("#principal iframe").css("height","199px");
		$("#auxiliar").css("width","230px");
		$("#login embed").css({"width":"95px","height":"95px"});
		$("#rodape").css("width","601px");
		$("#formulario h1").css("margin","2px 0px 8px 0px");
		$("#formulario #botao").css({"margin":"0px","height":"20px"});
		$("#formulario").css({"padding":"5px","height":"220px"});		
	}
});


