$(document).ready(function() {
		$(".specList > table:eq(0)").show();
		$(".specListTabs li:eq(0)").addClass("active");
		$(".specListTabs li").click(function() {
			$(".specListTabs li").removeClass("active");
			$(this).addClass("active");
			var li_index = $(".specListTabs li").index(this);
			$(".specList > table").hide();
			$(".specList > table:eq(" + li_index + ")").show();
		});
});
