$("div#maincon dl").each(
	function(){
		if($(this).children("dt").size() > 5){
			$(this).next().children().show();
			for (var i=5;i<$(this).children("dt").size();i++){
				$(this).children("dt").eq(i).hide();
				$(this).children("dd").eq(i).hide();
			}
			$(this).next().toggle(
							   function(){
								   $(this).prev().children(":hidden").show();
								   $(this).children().attr("src","/img/up.gif");
								   $(this).children().css({"top":function(){return $(this).parent().prev().height()+120;}});
							   },
							   function(){
										for (var i=5;i<$(this).prev().children("dt").size();i++){
											$(this).prev().children("dt").eq(i).hide();
											$(this).prev().children("dd").eq(i).hide();
										}
										$(this).children().attr("src","/img/down.gif");
										$(this).children().css({"top":"145px"});
								})
		}
	}
);
$("div#maincon ul ul").each(
	function(){
		if ($(this).children().eq(1).height()>14) {
			a = $(this).children().eq(1).height();
			$(this).children().eq(2).height(a);
		}
});