$(function() {
	$('#down').click(function() { $('#navi_bg').animate( {top : '90', opacity : '0.5'}, 350); $(this).hide(); $('#up').show(); return false; } );		
	$('#up').click(function() {	$('#navi_bg').animate( {top: '0', opacity : '1'}, 400); $(this).hide(); $('#down').show(); return false; } );
});