jQuery(document).ready(function() {
	jQuery.noConflict();

	// Menu déroulant
	jQuery("#nav li").each(function() {
		jQuery(this).hover(function() {
			jQuery(this).find("ul").animate({
				height: 'show',
				opacity: 'show'
			}, 'fast');
		}, function() {
			jQuery(this).find("ul").animate({
				height: 'hide',
				opacity: 'hide'
			}, 'fast');
		});
	});

	// Champ de recherche
	jQuery('#recherche').focus(function() {
		if (jQuery(this).val() == 'mots clés') {
			jQuery(this).val('');
		}
	});

	jQuery('#recherche').blur(function() {
		if (jQuery(this).val() == '') {
			jQuery(this).val('mots clés');
		}
	});

	// Submit du formulaire lors d'un choix de fabricant
	jQuery('#fabricants_francais, #fabricants_europeens').change(function() {
		jQuery(this).parent().submit();
	});

	// Sélection plus simple des options de livraison et de facturation
	jQuery('.autoSelection').mouseenter(function() {
		jQuery(this).css('cursor', 'pointer');
		jQuery(this).css('background', '#F0C8CA');
	}).mouseleave(function() {
		jQuery(this).css('background', '');
	});

	jQuery('.autoSelection').click(function() {
		jQuery(this).find('input[type=radio]').attr('checked', 'checked');
	});
});