//Tour price table
$(document).ready(function() {
	$(".showTourPrice").toggle(
	function () {
	  $(".tableTourPrice").slideDown("slow");
	  $(".showTourPrice").text("Скрыть часть туров");
	  return false;
	},
	function () {
	  $(".tableTourPrice").slideUp("slow");
	  $(".showTourPrice").text("Показать все туры");
	  return false;
	}
	);
});
