// JavaScript Document
var showId = 1;
$(function(){
$('#ToggleBox>li').click( function () { 
id = $(this).attr('class').substr(3);
if(showId != id){
$(this).find('h2').hide();
$(this).find('.TB-box').show();
$('.TB-'+showId).find('.TB-box').hide();
$('.TB-'+showId).find('h2').show();
showId = id;}
});
})