// JavaScript Document
//Para remover valor de input texts "onfocus" e repôr o mesmo valor "onblur", se não houver introdução de novo valor. Chamar  dentro da funcao generica "document.ready()".
function dynInput(){
	$("input:text").focus(function(){
		oBaseVal = $(this).val();
		$(this).val("");
		$(this).blur(function(){
			var oCompare= $(this).val();
			if (oCompare == "") {
				$(this).val(oBaseVal);
			}
		});
	});
}
function selectInput(){
	$("input:text").focus(function(){
		$(this).select();
	});
	$("textarea").focus(function(){
		$(this).select();
	});
}
