﻿$(document).ready(function(){
   activeItem = $("#accordion li.active");
   $("#accordion li").click(function(){
      if ($(this).attr('class').indexOf('pi') != -1) {
         $('#sub-nav #business').fadeOut(600);
         $('#sub-nav #pi').fadeIn(600);
      } if ($(this).attr('class').indexOf('business') != -1) {
         $('#sub-nav #pi').fadeOut(600);
         $('#sub-nav #business').fadeIn(600);
      }
      $(activeItem).children('.tab').css('background-position','0px');
      $(this).children('.tab').css('background-position','25px');
      $(activeItem).animate(
         { width: "25px" }, 
         { duration:600, queue:false }            
      );
      $(this).animate(
         { width: "625px" }, 
         { duration:600, queue:false }
      );
      activeItem = this;
   });
   
   $('#testimonials #t').cycle({
      timeout: 8000,
      speed: 900,
      random: 1,
      cleartypeNoBg: 1
   });
});
