$(document).ready(function() {
	$("#content_home ul ul").hide();
	$("#content_home ul").find("span").mouseover(function() {
		$("#content_home ul ul").slideUp();
		$(this).parents("ul").find("ul").slideDown("slow");
	});	
	$("#header_home").mouseover(function() {
		$("#content_home ul ul").slideUp();
	});	
	$(".container").mouseover(function() {
		$("#content_home ul ul").slideUp();
	});	
});