function show(id){
	if(document.getElementById('current')){
		document.getElementById('current').style.display = 'none';
	}
	if(document.getElementById('almenu_'+id)){
		document.getElementById('almenu_'+id).style.display = 'block';
		/*var otherEl = $('content');
		if(otherEl.style.marginTop != '60px'){
			var morph = new Fx.Morph(otherEl, {duration: 100});
			morph.start({
					marginTop: '60px'
			});
		}*/
	}
}
function hide(id){
	if(document.getElementById('current')){
		document.getElementById('current').style.display = 'block';
	}
	if(document.getElementById('almenu_'+id)){
		document.getElementById('almenu_'+id).style.display = 'none';
	}
	/*var otherEl = $('content');
	var morph = new Fx.Morph(otherEl, {duration: 400});
	morph.start({
			marginTop: '60px'
	});*/
	//document.getElementById('content').style.marginTop = '10px';
}