function hide(id){
		document.getElementById(id).className='hide';
	}
	
	function show(id){
		document.getElementById(id).className='show';
	}
