function selectHandler() {
	if (document.spasearchform.county.value=="general") {
		document.spasearchform.region.disabled=0	
	} else {
		document.spasearchform.region.disabled=1	
	}
	if (document.spasearchform.region.value=="general") {
		document.spasearchform.county.disabled=0	
	} else {
		document.spasearchform.county.disabled=1	
	}
}

function showTab(tabIndex){
	$(".tabContent").hide();
	$(".tab").removeClass("selected");
	$("#tab_" + tabIndex).addClass("selected");
	$("#tab_" + tabIndex + "_content").show();
	alert("ss2");
}

function showProductImage(fileName) {
	container = document.getElementById("detailImageContainer");
	detailImage = container.getElementsByTagName("img");
	detailImage[0].src = "images/objects/spa_images/<?=$_spa->spaRecord->fields[id]?>/"+fileName;
}

function showText(sectionName, tabId){
	/*$(".spaText").hide();*/
	$(".spaText").removeClass("spaTextDisplay");
	/*$("#" + sectionName + "_header").css("display", "block");
	$("#" + sectionName + "_body").show();*/
	$("#" + sectionName + "_container").addClass("spaTextDisplay");
	/*$("#" + sectionName + "_container").show();*/
	$(".tab").removeClass("selected");
	$("#tab_" + tabId).addClass("selected");
	if($("#contentInner").height() < "134"){
		$(".readMore").hide();
	} else {
		$(".readMore").show();
	}
	$(".tabContent").animate({
		height:"133px"
		}, "fast", "linear");
	$('#moreText').text('Read More');
	$('#moreButton').attr("src", "/images/site/button-plus.gif");
}