// JavaScript Document

$(document).ready(function(){
   
 

$("#tab-title-1").click(function(){
   $("#tab-title").children().removeClass("active");
   $("#tab-title-1").addClass("active");
   
   $("#tab-body-2").hide();
   $("#tab-body-3").hide();
   $("#tab-body-4").hide();
   $("#tab-body-5").hide();
   $("#tab-body-1").show();
   
   return false;
 });

$("#tab-title-2").click(function(){
   $("#tab-title").children().removeClass("active");
   $("#tab-title-2").addClass("active");
   
   $("#tab-body-1").hide();
   $("#tab-body-3").hide();
   $("#tab-body-4").hide();
   $("#tab-body-5").hide();
   $("#tab-body-2").show();

   return false;
 });

$("#tab-title-3").click(function(){
   $("#tab-title").children().removeClass("active");
   $("#tab-title-3").addClass("active");
   
   $("#tab-body-2").hide();
   $("#tab-body-1").hide();
   $("#tab-body-4").hide();
   $("#tab-body-5").hide();
   $("#tab-body-3").show();

   
   return false;
 });

$("#tab-title-4").click(function(){
   $("#tab-title").children().removeClass("active");
   $("#tab-title-4").addClass("active");
   
   $("#tab-body-1").hide();
   $("#tab-body-2").hide();
   $("#tab-body-3").hide();
   $("#tab-body-5").hide();
   $("#tab-body-4").show();

   
   return false;
 });

$("#tab-title-5").click(function(){
   $("#tab-title").children().removeClass("active");
   $("#tab-title-5").addClass("active");
   
   $("#tab-body-1").hide();
   $("#tab-body-2").hide();
   $("#tab-body-3").hide();
   $("#tab-body-4").hide();
   $("#tab-body-5").show();

   
   return false;
 });

return false;

});