$(document).ready(function(){
  $("#AtoE").show();
  $("#FtoJ").hide();
  $("#KtoO").hide();
  $("#PtoT").hide();
  $("#UtoZ").hide();
  
  $("td#TD_atoe").addClass("active");
    
  $("#_atoe").click(function () {
	$("#AtoE").show();
	$("#FtoJ").hide();
	$("#KtoO").hide();
	$("#PtoT").hide();
	$("#UtoZ").hide();
	
	$("td").removeClass("active");
	$("td#TD_atoe").addClass("active");
	
	$("#titlePart").empty();
	$("#titlePart").append("A ... E");
      return false;
    });
   
   $("#_ftoj").click(function () {
	$("#AtoE").hide();
	$("#FtoJ").show();
	$("#KtoO").hide();
	$("#PtoT").hide();
	$("#UtoZ").hide();
	
	$("td").removeClass("active");
	$("td#TD_ftoj").addClass("active");
	
	$("#titlePart").empty();
	$("#titlePart").append("F ... J");
      return false;
    });
   
   $("#_ktoo").click(function () {
	$("#AtoE").hide();
	$("#FtoJ").hide();
	$("#KtoO").show();
	$("#PtoT").hide();
	$("#UtoZ").hide();
	
	$("td").removeClass("active");
	$("td#TD_ktoo").addClass("active");
	
	$("#titlePart").empty();
	$("#titlePart").append("K ... O");
      return false;
    }); 

   $("#_ptot").click(function () {
	$("#AtoE").hide();
	$("#FtoJ").hide();
	$("#KtoO").hide();
	$("#PtoT").show();
	$("#UtoZ").hide();
	
	$("td").removeClass("active");
	$("td#TD_ptot").addClass("active");
	
	$("#titlePart").empty();
	$("#titlePart").append("P ... T");
      return false;
    }); 

   $("#_utoz").click(function () {
	$("#AtoE").hide();
	$("#FtoJ").hide();
	$("#KtoO").hide();
	$("#PtoT").hide();
	$("#UtoZ").show();
	
	$("td").removeClass("active");
	$("td#TD_utoz").addClass("active");
	
	$("#titlePart").empty();
	$("#titlePart").append("U ... Z");
      return false;
    });    

  });