function addClass(){
	var _d = 0;
	jQuery('.list-menu li').each(function(){
		var _this = jQuery(this);
		_this.link = jQuery('a:eq(0)',_this);
		_this.ul = jQuery('ul:eq(0)',_this);
		
		_this.link.click(function(){
			if(_this.ul.length){
				if(_this.hasClass('box-dropdown-add')){
					_this.ul.slideUp(_d,function(){
						_this.removeClass('box-dropdown-add');
					})
				}else{
					_this.ul.slideDown(_d,function(){
						_this.addClass('box-dropdown-add');
					})
				}
				return false;
			}
		})
	})
}
if (window.addEventListener)
	window.addEventListener("load", addClass, false);
else if (window.attachEvent)
	window.attachEvent("onload", addClass);