//Les fonctions 
//-------------------------------------------------------------
$(document).ready(function(){
	var zp_additional = false;
	
	$('.zp_autoempty').focus(function(){
		var title = $(this).attr('title');
		var value = $(this).val();
		if(value == title)
			$(this).val('');
	});
	$('.zp_autoempty').blur(function(){
		var title = $(this).attr('title');
		var value = $(this).val();
		if(value == '')
			$(this).val(title);
	});
});

