$(document).ready(
	function() 
		{
		$("#menu_top ul li a").hover(
			function()
				{
				id = $(this).attr("class");
				id = id.replace("page page-","");
				//alert("id="+id);
				
				$(".galactique").hide();
				$("#galactique-"+id).show();
				}
			);
		$("#content").hover(
			function()
				{
				$(".galactique").hide();
				}
			);
			
			
		}
	);
