$(document).ready(function(){

	$(".buttontable td:first-child").addClass("AdditionalInfoTabs buttonSelected");

	$(".AdditionalInfoTabs .buttons").show();
	$(".AdditionalInfoTabs .buttontable").show();
	$(".AdditionalInfoTabs .tabcontent").hide();
	$(".AdditionalInfoTabs .tabcontent_text").hide();
	$(".area div:first-child").show();
	$(".AdditionalInfoTabs .tabcontent_title").hide();

	$(".buttons").click(function () {
		var divname = this.id;

		$(".buttons").removeClass("AdditionalInfoTabs buttonSelected");
		$(".buttons").addClass("AdditionalInfoTabs buttonNotSelected");

		$("#" + divname).removeClass("AdditionalInfoTabs buttonNotSelected");
		$("#" + divname).addClass("AdditionalInfoTabs buttonSelected");
		
		$(".area .tabcontent").hide();
		$("#"+ divname + "_area").show();
	});
});
