function show_info(id){
	if((old_select > -1) && (id != old_select)){
		obj	= document.getElementById('t'+old_select);
		obj2	= document.getElementById('h'+old_select);
		if(obj && obj2){
			$("div#" + 't' + old_select).slideUp("fast");
			obj.style.display = "none";
			obj2.className = "";
		}
	}
	obj	= document.getElementById('t'+id);
	obj2	= document.getElementById('h'+id);
	if(obj && obj2){
		if(obj.style.display=="none"){
			$("div#" + 't' + id).slideDown("fast");
			obj.style.display = "block";
			obj2.className = "selected";
			old_select = id;
		}else{
/*			$("div#" + 't'+id).slideUp("fast");
			obj.style.display = "block";
			old_select = -1; */
		}
	}
	return false;
}
