$(document).ready(function() {
$('.zoom').hide();
$('.liseret').hide();
$('#chocochamoisette_zoom').show();
$('#chocochamoisette_detail').show();
$('#chocochamoisette_liseret').show();
$('#liste a').hover(
				function() {
						$('.zoom').hide();
						$('.liseret').hide();
						$('.detail').hide();
						zoom = '#'+$(this).attr("id")+'_zoom';
						detail = '#'+$(this).attr("id")+'_detail';
						liseret = '#'+$(this).attr("id")+'_liseret';
						$('#chocochamoisette_zoom').hide();
						$('#chocochamoisette_detail').hide();
						$('#chocochamoisette_liseret').hide();
						$(liseret).show();
						$(zoom).show();
						$(detail).show();						
						 },
						 function() {
							/*$('#chocochamoisette_zoom').show();
						$('#chocochamoisette_detail').show();
						$('#chocochamoisette_liseret').show();						 
							 $(zoom).hide();
							 $(detail).hide();
							 $(liseret).hide();*/
							 }
				);
//        var timer;
//
//        $('ul#topnav li').hover(function() {
//             $(this).find("span").show();
//    },
//    function() { //on hover out...
//			if(timer) {
//                        clearTimeout(timer);
//                        timer = null;
//                }
//			timer = setTimeout(function() {
//				if(document.URL.indexOf('bonbons') != -1) {
//					$(this).find("span#menu_bonbons").show();
//				}	
//				else if(document.URL.indexOf('dragees') != -1) {
//					$(this).find("span#menu_dragees").show();
//				}
//			else $(this).find("span").hide();
//			}, 2000);
//		}
//    );

});
