$(document).ready(function (){
	$("#home-tabs li").click(function() {
		var tab = $(this).children().attr('href');
		$(".tab-item").hide();
		$(tab).show();
		$("#home-tabs li").removeClass("active");
		$(this).addClass("active");
		return false;
	});
});
