$( function () {
	
	$('.liste-cuistot').find('li').hover( function () {
		$(this).find('.go').css({ visibility:'visible' });
		if ($.browser.msie && parseInt($.browser.version) < 7 ) {
			$(this).addClass('hover');
		}
	}, function () {
		$(this).find('.go').css({ visibility:'hidden' });
		$(this).removeClass('hover');
	});
	
	$('.liste-cuistot').find('li').click( function () {
		document.location.href= $(this).find('a').attr('href');
	});
	
	
	/* onglets */	
	$('.onglets').find('li').each( function (index) {
		$(this).not('.select').hover ( function () {
			
			$('.bulle-jaune').show();
		}, function () { 
			$('.bulle-jaune').hide();
		});
	});

});