function tab_switch(this_id,switch_id){
	$(this_id).siblings().invoke('removeClassName', 'active');
	$(this_id).addClassName('active');
	$(switch_id).siblings().invoke('hide');
	$(switch_id).show();
}
