// copyright by: i3Group.com.br (2010)

$(document).ready( function () {
	$('#nome').val("Nome");	
	$('#email').val("E-mail");	
	
	$('#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').click( function() {
		if ($(this).val() == "E-mail") {
			$(this).val("");
		}		
	});
	
	$('#email').blur(function(){
		if ($(this).val() == "") {
			$(this).val("E-mail")
		}
	});
	
	$('#email').keypress(function() {
	});
	
});
