
$(document).ready(function(){


	$("#menu > li").mouseover(function(){
		if($(this).attr('id') != 'offres_bt'){
			id = $(this).attr('id').replace('item_menu','');
			$("#sm" + id).css({display: 'block'});
			$(this).children('a').addClass('hover');
		}
	});
	
	$("#menu > li").mouseout(function(){//////////////////////////////////////
		if($(this).attr('id') != 'offres_bt'){
			id = $(this).attr('id').replace('item_menu','');
			//minut[id] = setTimeout("cache("+'\'sm'+id+"')",300);
			$("#sm" + id).css({display: 'none'});
		$(this).children('a').removeClass('hover');
		}
	});
	
	
	$("#offres_bt").click(function(){
		$("#popup").fadeIn(1000,function(){
			$("#offres_bt").fadeOut(500);			
		});	
	});
	$("#popup img").click(function(){
		$(this).fadeOut(500,function(){
			$("#offres_bt").fadeIn(500);
		});
	});
	
	
});

