
$(document).ready(
	function(){
		$("div.ht-tab-menu a").click(
		  function () {
			var panels = $(this).parent().parent().children(".ht-tab-panels").children();
			var this_index = $(this).parent().children().index($(this));
			$(this).siblings().removeClass("here");
			$(this).addClass("here");
			panels.eq(this_index).siblings().removeClass("here");
			panels.eq(this_index).addClass("here");
			}
		);
	}
);

