//---------------------------------------------------------------------------------------

/* Tabs */

$(document).ready(function (){


$('.tables .active').fadeIn("slow")

 $('.tabs .one').click(function() {
  $('.tabs .one').addClass("active");
  $('.tabs .two').removeClass("active");
  $('.tabs .three').removeClass("active");
  $('.tables .table-2').fadeOut("slow").removeClass("active");
  $('.tables .table-3').fadeOut("slow").removeClass("active");
  $('.tables .table-1').fadeIn("slow").addClass("active");
 });

 $('.tabs .two').click(function() {
  $('.tabs .two').addClass("active");
  $('.tabs .one').removeClass("active");
  $('.tabs .three').removeClass("active");
  $('.tables .table-1').fadeOut("slow").removeClass("active");
  $('.tables .table-3').fadeOut("slow").removeClass("active");
  $('.tables .table-2').fadeIn("slow").addClass("active");
 });

 $('.tabs .three').click(function() {
  $('.tabs .three').addClass("active");
  $('.tabs .two').removeClass("active");
  $('.tabs .one').removeClass("active");
  $('.tables .table-1').fadeOut("slow").removeClass("active");
  $('.tables .table-2').fadeOut("slow").removeClass("active");
  $('.tables .table-3').fadeIn("slow").addClass("active");
 });


});

//---------------------------------------------------------------------------------------

/* Token */

function show_token (){
 $("#main-wrapper").prepend('<div id="site-shadow"></div>');
 $("#site-shadow").fadeIn("slow");
 $("#site-shadow").prepend('<div id="token"></div>');
 $("#token").fadeIn("slow").animate({opacity: 1, top: "50px"}, 1000 );
 $("#token").load("token.inc.php");
}

function close_token (){
 $("#token").animate({top: "-50px"}, 1500 ).fadeOut("slow");
 $("#site-shadow").fadeOut("slow");
}


