$(document).ready(function() {$("#job_form").submit(check_job_form);});

var job_form_valid = true;
function check_job_form()
{
job_form_valid = true;
$("#job_form :text").each(chk_fld);
return job_form_valid;
}

function chk_fld()
{
if(this.style.display=="none") return;
if(!job_form_valid) return;
if(jQuery.trim(this.value)=="") {alert("Nu aţi completat toate câmpurile!"); this.focus(); job_form_valid=false; return false;}

if(this.name=="email" && !isEmailValid(this.value)){alert("Adresa email este greşită"); this.focus(); job_form_valid=false; return false;};
}