$(document).ready(function(){
	$(".toggleView").click(function(){
		var contentId = "#" + this.id.split("_")[0] + "_" + this.id.split("_")[1];
		if ($(this).hasClass("minus")) {
			$(this).removeClass("minus");
			$("span", this).text("Show");
			$(contentId).hide();
		} else {
			$(this).addClass("minus");
			$("span", this).text("Hide");
			$(contentId).show();
		}
	});
	$(".tour a").click(function(){
		var toursId = "#" + this.id.split("_")[0] + "_tours";
		$(toursId).toggle();
	});
})