function showTab(tab){
	$('#box-nav li').each(function(){
		$(this).removeClass("active");
	});
	$("#tab" + tab).addClass("active");
	$('#outer-box span').each(function(){
		$(this).hide();
	});
	$("#tab" + tab + "-content").show();
}

