$.setInputClass = function() {
	$('input:radio').addClass("radio");
	$('input:checkbox').addClass("checkbox");
	$('input:button,input:submit,input:reset').addClass("botao");
};

function formataTags( obj , e )
{
    var tecla = ( window.event ) ? e.keyCode : e.which;
    if ( tecla == 8 || tecla == 0  ) /*backspace / del*/ 
        return true;
    else if ( tecla == 59 || tecla == 32 ) /*ponto e virgula / espaço*/
    	return true;
    else if ( tecla == 71 || tecla == 75 || tecla == 77 || tecla == 79 ) /*navegação*/
        return true;
    else if ( tecla > 48 && tecla < 57 ) /*numeros*/
        return true;
    else if ( tecla > 64 && tecla < 91 ) /*maiusculas*/
    	return true;
    else if ( tecla > 96 && tecla < 123 ) /*minusculas*/
    	return true;
    else
    	return false;
}
