$(function() {
	
	var $currenttab = $("li.active-tab");
	var $currentbucket = $("#home-news");
	
	$("li#home-tab-news").click(function(){
		$currenttab.removeClass("active-tab");
		$currentbucket.addClass("hidden-item");
		$("li#home-tab-news").addClass("active-tab");
		$("#home-news").removeClass("hidden-item");
		$currenttab = $(this);
		$currentbucket = $("#home-news");
	});
	
	$("li#home-tab-blog").click(function(){
		$currenttab.removeClass("active-tab");
		$currentbucket.addClass("hidden-item");
		$("li#home-tab-blog").addClass("active-tab");
		$("#home-blog").removeClass("hidden-item");
		$currenttab = $(this);
		$currentbucket = $("#home-blog");
	});
	
	$("li#home-tab-twitter").click(function(){
		$currenttab.removeClass("active-tab");
		$currentbucket.addClass("hidden-item");
		$("li#home-tab-twitter").addClass("active-tab");
		$("#home-twitter").removeClass("hidden-item");
		$currenttab = $(this);
		$currentbucket = $("#home-twitter");
	});

});
