function closegood(n){
 id = 'tr_text'+n;
 disp = document.getElementById(id).style.display;
 if(disp=='block' || disp=='')
 {
	 $('#tr_text'+n).toggle("slow");
	 
 }
 else
 {
	 $('#tr_text'+n).toggle("slow");
 }
}
function color_no_activ(id)
	{
		document.getElementById('img_td'+id).src="/img/no_activ_menu_right.jpg";
		document.getElementById('td_td'+id).className="main_menu_span";	
	}
function color_activ(id)
{
	
		document.getElementById('img_td'+id).src="/img/activ_menu_right.jpg";
		document.getElementById('td_td'+id).className="main_menu_ref";
}