function showDiv(text, id){
	$("#"+text+'_'+id).hide("slow");
	$("#"+text+"_hidden"+'_'+id).slideDown("slow");
}

function hideDiv(text, id){
	$("#"+text+"_hidden"+'_'+id).hide("slow");
	$("#"+text+'_'+id).show("slow");
}
