function switchId(obj){
	if($('#'+obj).css('display')=='none'){
		$('#'+obj).show('normal')
	}
	else
		$('#'+obj).hide('normal');
}
