// site_contact.js
// fichier javascript avec les paramètres du formulaire de contact
jQuery(document).ready(function() {
    $("#objet").change( function() {
			var id =document.getElementById('objet').selectedIndex;
			//document.location.href = window.location.pathname+"?idobjet="+id;
		});

	document.getElementById('nom').focus();

});