$(function(){
	var to, to2;
	$("#nav_top li").live("mouseover", function(){
		var self = this;
		$.clear(to);
//		if (!$(this).parent().is("#nav_top"))
			showMenu(this);
//		else {
//			to2 = $.timeout(function() {
//				showMenu(self);
//			}, 250);
//		}
		return false;
	});

	$("#nav_top li").live("mouseout", function() {
		var self = this;
//		$.clear(to2);
		to = $.timeout(function() {
			$(self).parents(".hovered").andSelf().removeClass("hovered").find("ul").hide();
		}, 500);
		return false;
	});
});
