$(function(){
	$("ul.dropdown li").hover(function(){
		var _this = $(this);
		var _menu = _this.find("ul");
		var _y = _this.height();

		_menu.css({
			left: 0,
			top: _y
		}).slideDown(300);
	}, function(){
		$(this).find("ul").slideUp(200);
	}).click(function(){
			
	});
})
