function connection_toggle() {
	var connection_subheader = document.getElementById("connection_subheader");
	
	if (connection_subheader.style.display == "none") {
		$("#connection_detail").hide("blind", { direction: "vertical" }, 1000);
		connection_subheader.style.display = "block";
	} else {
		connection_subheader.style.display = "none";
		$("#connection_detail").show("blind", { direction: "vertical" }, 1000);
	}
	
	return false;
}

function Search_toggle(id) {
	var arrow = document.getElementById("search_toggle_" + id);
	
	if (arrow.src.indexOf("-up") != -1) {
		$("#panel_detail_" + id).hide("blind", { direction: "vertical" }, 1000);
		arrow.src	= arrow.src.replace("-up", "-down");
		document.getElementById("search_toggle_txt_" + id).innerHTML = 'click to see<br>location amenities';
	} else {
		$("#panel_detail_" + id).show("blind", { direction: "vertical" }, 1000);
		arrow.src	= arrow.src.replace("-down", "-up");
		document.getElementById("search_toggle_txt_" + id).innerHTML = 'click to hide<br>location amenities';
	}
	
	return false;
}
