function ShowT(id, length){
    for (i = 1; i <= length; i++) {
        if ($('T' + i).style.display != 'none' && i != id) {
            new Effect.Squish('T' + i);
            $('LI' + i).style.fontWeight = "normal";
			$('LI' + i).style.color = "#000";
			$('LI' + i).style.background = "none";
        }
    }
    if ($('T' + id).style.display == 'none') {
        new Effect.BlindDown('T' + id);
        $('LI' + id).style.fontWeight = "bold";
		$('LI' + id).style.color = "#FFF";
		$('LI' + id).style.background = "#666";
    }
}
