$(document).ready(function() {
	$('input[name=email]').focus(function() {
		var valoare = $(this).val();
		if(valoare == "Adresa de e-mail") {
			$(this).val('');
		}
		else {}
	}).blur(function() {
		var valoare = $(this).val();
		if(valoare == "") {
			$(this).val('Adresa de e-mail');
		}
		else {}
	});
	
	$('input[name=pass]').focus(function() {
		var valoare = $(this).val();
		if(valoare == "parola") {
			$(this).val('');
		}
		else {}
	}).blur(function() {
		var valoare = $(this).val();
		if(valoare == "") {
			$(this).val('parola');
		}
		else {}
	});
	
	$('input[name=name]').focus(function() {
		var valoare = $(this).val();
		if(valoare == "Nume") {
			$(this).val('');
		}
		else {}
	}).blur(function() {
		var valoare = $(this).val();
		if(valoare == "") {
			$(this).val('Nume');
		}
		else {}
	});
});
