// Menu
$(document).ready(function(){
	$("#menu div").each(function(){
		$(this).hoverIntent(
			function(){
				$(this).children("ul").css({display : "block"});
				$(this).siblings().children("ul").css({display : "none"});
			},
			function(){
				$(this).children("ul").css({display : "block"});
			});
	});
	$("#menu").hoverIntent(
		function(){
		},
		function(){
			$("#menu div").children("ul").css({display : "none"});
			$("#menu div.selected").children("ul").css({display : "block"});
		});
});

// Listes 
$(document).ready(function(){
	$("[title=editable]").each(function(){
		$("a.opener",this).attr({href : "#"});	
		$(".details_selected",this).removeClass("details_selected").addClass("details").css({display : "block"});
		$("a.opener",this).click(
			function(){
				$(this).parents(".worker").children(".details").slideDown("slow").fadeIn("slow");
				$(this).parents(".worker").siblings().children(".details").slideUp("slow");
			});
	});
});
