function almenu_switch(id) {
	$('#menu_'+id).animate({opacity: 1.0,height: 'toggle'},300,function() {
    	if ( $('#menu_'+id).css('display') == "block" ) {
			$.cookie('menu_'+id, '1', { expires: 1 });
		} else {
			$.cookie('menu_'+id, '1', { expires: -1 });
		}
	});
	
}
