// JavaScript Document


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

$(document).ready(function(){
	$('.auto_empty').each(function(){
		var defaut = $(this).attr('valeurInit');
		$(this)
			.focus(function(){
				var valeur = $(this).val();
				if(valeur == defaut) $(this).val('');
			})
			.blur(function(){
				var valeur = $(this).val();
				if(valeur == '') $(this).val(defaut);
			});
	});
});
