$(function(){
	$('ul.dropdown li ul').hide();
	$(".dropdown>li").hover(function(){
		var _this = $(this);
		var _menu = _this.find("ul");
		var _y = _this.height();
	

		_menu.css({
			left: 0,
			top: _y
		}).stop(false, true).slideDown(400);
	}, function(){
		$(this).find("ul").stop(false, true).slideUp(200);
	});
});




$(function(){
	$('ul.FONTSIZE li ul').hide();
	$(".FONTSIZE>li").hover(function(){
		var _this = $(this);
		var _menu = _this.find("ul");
		var _y = _this.height();
	

		_menu.css({
			right:"10px",
			top:_y
		}).stop(false, true).slideDown(100);
	}, function(){
		$(this).find("ul").stop(false, true).slideUp(200);
	});
});

$(function(){
	$(".DOWN_LIST").next().hide().eq(0).show();

	$(".DOWN_LIST").click(function(){
		$(this).next().slideToggle();
	});
});

