function menu_init() {
	mf('.left_col > dd:visible').hide();
	mf("dt a").click(
	function(e){
		var elem = mf('dd:visible');
		var open_this = mf('dd:visible').prev().children('a').html() != mf(this).html();
		var this_dd = mf(this).parent().next();

		if(elem != this_dd) {
			mf(this).parent().next().show();
		} /*else {
			
		}*/
		elem.hide();
			mf('dt a').removeAttr('class');
		if(open_this) {
			mf(this).attr('class', 'active');
			//$.scrollTo($(this), 800);
		} else {
			mf(this).removeAttr('class');
		}
		return false;
	}
	);
}
