$(function(){ 
	
	/*--------Home Page JS----------*/
	
	// Content Slider
  //--------------------//
  $('#pb-items').cycle({
    timeout: 6500,
    delay: 1000,
    pause: true,
    pager:  '#pb-nav'
  });
		
  // Tab Box
  //---------------------//
  $("ul.tab-nav a").click(function(){
    $(".tab-box-content").hide();
    $("ul.tab-nav li").removeClass("active");
    $($(this).attr("href")).show();
    $(this).parent().addClass("active");
    return false;
  });
  

  //equalize twitter box height with news/blog box height
  /*if ($("#buzz-box .col-1").innerHeight() - $("#buzz-box .col-2").innerHeight() >= 0){
    $(".tweet_list").css("margin-bottom",$("#buzz-box .col-1").innerHeight() - $("#buzz-box .col-2").innerHeight()-5);
  };*/

	

});
