function content_show(id){
	for(var I=1;I<=6;I++)
		if(id==I)
			$('content'+I).show();
		else
			$('content'+I).hide();
}
function content_show_all(){
	for(var I=1;I<=6;I++)
		$('content'+I).show();
}