$(function(){
	var li = $("ul.dropdown .li");
	li.each(function(i){
		var _this = $(this);
		
		_this.hover(function(){
			var _this = $(this);
			var _menu = _this.find("ul");
			var _y = _this.height()-22;
			var _x= _this.width()+5-3;
			_this.css("z-index", 100);
			_menu.css({
				left: _x,
				top: _y,
				zIndex: 99999999
			}).show();
			if(_menu.is(":visible")){
				_menu.show();
			}
		}, function(){
			$(this).css("z-index", 1).find("ul").hide();
		}).click(function(){
			//return false;	
		});
	});
});