$(function(){
	$(".home_tab  .tab  li:first-child").addClass('active');
	$(".home_tab_display  .box:first-child").show();
	
	$(".home_tab  .tab  li").click(function(){
		$(this).addClass("active").siblings().removeClass("active");
		$(this).parent().parent().find(".home_tab_display .box:eq(" + $(this).parent().find('li').index($(this)) + ")").show().siblings().hide();
	});
	
	
})
