function show_hide(id) {
	_html = $('#block_' + id);
	_html.css('display', _html.css('display')!='none'?'none':'block');
}
