/* Masque le label de recherche lorsque le champ reçoit le focus */
$(document).ready(function() {
	if( $('#q').val()=='' ){
		$('#search-lbl').css( 'display', 'block' );
	}
	$('#q').focus(function(){
		$('#search-lbl').css( 'display', 'none' );
	}).blur(function(){
		if( $(this).val()=='' ){
			$('#search-lbl').css( 'display', 'block' );
		}
	});
});