$(document).ready(function(){
	$('#formSend').click(function(){
		var erori = false;
		if($('#name').val() == '') {
			$('#errorName').html('* <img src="images/alert.png" alt="Va rugam completati acest camp"/>');
			erori = true;
		}
		else $('#errorName').html('*');
		if($('#email_from').val() == '') {
			$('#errorEmail').html('* <img src="images/alert.png" alt="Va rugam completati acest camp"/>');
			erori = true;
		}
		else $('#errorEmail').html('*');
		if($('#message').val() == '') {
			$('#errorMessage').html('* <img src="images/alert.png" alt="Va rugam completati acest camp"/>');
			erori = true;
		}
		else $('#errorMessage').html('*');
		if (erori) return false;
		else return true;
	});
});