jQuery(function($)	{
	// Texte par defaut du bouton de recherche
	var initSearchValue = "rechercher...";
	
	$("a,div,ul").removeClass("nojs");
	$('.print').css("display","inline-block");
	$('.print').click(function(){window.print();});
	
	/* Affiche / cache le texte par defaut du input recherche */
	var replaceTxtInput = function( obj ) {
		var txt = obj.value;
		if( txt == initSearchValue )
			obj.value = '';	
		else
		if( txt == "" )
			obj.value = initSearchValue;	
	}
	$('.search_query').val( initSearchValue );
	$('.search_query')
		.focus(
			function() {
				replaceTxtInput( this );
			}
		)
		.blur(
			function() {
				replaceTxtInput( this );
			}
		);
	/* Fin Affiche / cache le texte par defaut du input recherche */
	
});