<!--
$(function()
{
	// top menu by Hamer
	$("#center_nav a").hover(function()
	{
		var this_obj = this;
		$("#AllMenuChileds>div").hide();
		$("#" + this_obj.rel).show();
		$("#" + this_obj.rel).hover(function(){}, function(e)
		{
			$("#" + this_obj.rel).hide();
		});
	});
});

//-->
