$(document).ready (function ()
{
	$('#form_search #keywords').focus (function ()
	{
		if (this.value == 'Recherche par mots clés')
		{
			this.value = '';
		}
	});
	$('#form_search #keywords').blur (function ()
	{
		if (this.value == '')
		{
			this.value = 'Recherche par mots clés';
		}
	});
	$('#form_search #search_submit').click (function ()
	{
		$('#form_search').submit ();
	});
});

