   $(document).ready(function(){
     $(".t_01").css('cursor','pointer');
     $(".t_02").css('cursor','pointer');
     $(".t_03").css('cursor','pointer');

     $(".t_01").click(function(event){
	    $(".t_01").fadeTo('normal',1);
	    $(".t_02").fadeTo('normal',0.33);
	    $(".t_03").fadeTo('normal',0.33);

		if($('#tb_02').is(':visible')){$('#tb_02').slideToggle();};
		if($('#tb_03').is(':visible')){$('#tb_03').slideToggle();};

		$("#tb_01").slideToggle('slow',
			function(){
				if($('#tb_01').is(':hidden')){
	    			$(".t_02").fadeTo('normal',1);
	     			$(".t_03").fadeTo('normal',1);
				};
		});
		$.scrollTo($('div#tb_01'), 'slow');

       return false;
     });

     $(".t_02").click(function(event){
	    $(".t_01").fadeTo('normal',0.33);
	    $(".t_02").fadeTo('normal',1);
	    $(".t_03").fadeTo('normal',0.33);

		if($('#tb_01').is(':visible')){$('#tb_01').slideToggle();};
		if($('#tb_03').is(':visible')){$('#tb_03').slideToggle();};

		$("#tb_02").slideToggle('slow',
			function(){
				if($('#tb_02').is(':hidden')){
	    			$(".t_01").fadeTo('normal',1);
	     			$(".t_03").fadeTo('normal',1);
				};
		});
	   	$.scrollTo($('div#tb_02'), 'slow');

       return false;
     });

     $(".t_03").click(function(event){
	    $(".t_01").fadeTo('normal',0.33);
	    $(".t_02").fadeTo('normal',0.33);
	    $(".t_03").fadeTo('normal',1);

		if($('#tb_01').is(':visible')){$('#tb_01').slideToggle();};
		if($('#tb_02').is(':visible')){$('#tb_02').slideToggle();};

		$("#tb_03").slideToggle('slow',
			function(){
				if($('#tb_03').is(':hidden')){
	    			$(".t_01").fadeTo('normal',1);
	     			$(".t_02").fadeTo('normal',1);
				};
		});
	   	$.scrollTo($('div#tb_03'), 'slow');
       return false;
     });
   });
