function changeTabs(tab) {
	if (tab == 1) {
		var otherTab = 2;
	} else {
		var otherTab = 1;
	}
	
	var otherHeading = document.getElementById('adam-tab-heading-' + otherTab);
	var otherContent = document.getElementById('adam-tab-' + otherTab);	
	otherHeading.style.color = "#666";
	otherHeading.style.backgroundColor = "#CCC";
	otherContent.style.display = "none";
	
	var heading = document.getElementById('adam-tab-heading-' + tab);
	var content = document.getElementById('adam-tab-' + tab);
	heading.style.color = "#FFF";
	heading.style.backgroundColor = "#666";
	content.style.display = "inline";
	
	
}

