$(".tabsmenu li").click(function () {
	  $(".tabsmenu li").removeClass();
	  $(".tabcontent").hide();
	  $(".tabsmenu li").addClass("taboff");
	  $(this).toggleClass("tabactive");
});
$("#tab1").click(function () {
	   $(".tabcontent").hide();
	   $("#t1").show();
});
$("#tab2").click(function () {
	   $(".tabcontent").hide();
	   $("#t2").show();
});
$("#tab3").click(function () {
	   $(".tabcontent").hide();
	   $("#t3").show();
});
$("#tab4").click(function () {
	   $(".tabcontent").hide();
	   $("#t4").show();
});
$("#tab5").click(function () {
	   $(".tabcontent").hide();
	   $("#t5").show();
});
$("#tab6").click(function () {
	   $(".tabcontent").hide();
	   $("#t6").show();
});
