jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery('#rechercher').mouseenter(function() {
		jQuery('#deroulant').show();
	  }).mouseleave(function(){
		jQuery('#deroulant').hide();
	});

	jQuery('#deroulant a').click(function() {
		var htmlStr = jQuery(this).html();
		if(htmlStr == 'Sur tout le site')htmlStr='';
		jQuery('#deroulant a.selected').removeClass('selected');
		jQuery(this).addClass('selected');
		jQuery('#univers').val(htmlStr.replace('Dans ',''));
	});

	jQuery('input.field').click(function() {
		if (jQuery(this).val() == 'Rechercher')jQuery(this).val('');
	});

});
