window.addEvent('domready', function(){
	// 
	// $(document.body).getElements('ul.submenu').addEvents({
	// 	'mouseenter': function(){
	// 		this.set('tween', {
	// 			duration: 1000,
	// 			transition: Fx.Transitions.Bounce.easeOut // This could have been also 'bounce:out'
	// 		}).tween('height', '250px');
	// 	},
	// 	'mouseleave': function(){
	// 		this.set('tween', {}).tween('height', '23px');
	// 	}
	// });
	// 
	
	var s_cl = new Fx.Slide('comm_list', {wrapper: 'span'});
	var s_ot = new Fx.Slide('other_list', {wrapper: 'span'});
	s_cl.hide();
	s_ot.hide();
    
    $('a_comm_list').addEvent('click', function(e) {
		s_cl.toggle();
	});
	
	$('a_others').addEvent('click', function(e) {
		s_ot.toggle();
	});
	
});
