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

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