// JavaScript Document

(function($) {
	$(function(){
		/* Document is ready
		---------------------------------------- */
		
		// Clear default text
		$(".recherche").focus(function()
		{
			if ($(this).val() == $(this)[0].title)
			{
				$(this).val("");
			}
		});
	   
		// If empty refill with the default value
		$(".recherche").blur(function()
		{
			if ($(this).val() == "")
			{
				$(this).val($(this)[0].title);
			}
		});
	   
		$(".recherche").blur();       
	});
})(jQuery);