$(document).ready( function () {
	$('#nome').val("Nome");	
	
	$('#nome').click( function() {
		if ($(this).val() == "Nome") {
			$(this).val("");
		}		
	});
	
	$('#nome').blur(function(){
		$(this).removeClass("username");
		if ($(this).val() == "") {
			$(this).val("Nome")
		}
	});
	
	$('#nome').keypress(function() {
	});
	
	
	$('#email').val("E-mail");	
	
	$('#email').click( function() {
		if ($(this).val() == "E-mail") {
			$(this).val("");
		}		
	});
	
	$('#email').blur(function(){
		$(this).removeClass("username");
		if ($(this).val() == "") {
			$(this).val("E-mail")
		}
	});
	
	$('#email').keypress(function() {
	});
});


$(document).ready( function () {
	$('#matricula').val("Matrícula:");	
	
	$('#matricula').click( function() {
		if ($(this).val() == "Matrícula:") {
			$(this).val("");
		}		
	});
	
	$('#matricula').blur(function(){
		$(this).removeClass("username");
		if ($(this).val() == "") {
			$(this).val("Matrícula:")
		}
	});
	
	$('#matricula').keypress(function() {
	});
	
	
	$('#senha').val("Senha:");	
	
	$('#senha').click( function() {
		if ($(this).val() == "Senha:") {
			$(this).val("");
		}		
	});
	
	$('#senha').blur(function(){
		$(this).removeClass("username");
		if ($(this).val() == "") {
			$(this).val("Senha:")
		}
	});
	
	$('#senha').keypress(function() {
	});
});
