function formulaire_check(mon_form){
var retour=true;
$(mon_form).find(".champs_obligatoire").each(function() {
if ($(this).val()==""){
$(this).addClass("champs_erreur");
$(this).change( function () {if ($(this).val()!=""){$(this).removeClass("champs_erreur");}} );
retour=false;
}
})
/*$(mon_form).find(".champs_obligatoire[@type='checkbox']").each(function() {
if(!$(this).attr('checked')){
retour=false;
}
});*/
$(mon_form).find("select.champs_obligatoire").each(function() {
if($(this).val()==""){
$(this).addClass("champs_erreur");
retour=false;
}
});
return retour;
}

function formulaire_post(mon_form){
if (formulaire_check(mon_form))
{
return true;
}
$(mon_form).parent().find('.commentaires').addClass("champs_erreur");
return false;
}

$(document).ready(function() {
$('form.formulaire').bind("submit", function(){
return 	formulaire_post(this);								 
});
});
