// Script for take the tour video page

// Animated toggle for Property pages 

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	//$(".toggle_container").hide();

	//Switch the "Open" and "Close" state per click
	$("h2.trigger").toggle(function(){
		$(this).addClass("active");
		$("h2.trigger a").html("Hide the video");

		}, function () {
		$(this).removeClass("active");
		$("h2.trigger a").html("Watch the video");
	});

	//Slide up and down on click
	$("h2.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("fast");
	});
	
	$("#toggle_head").click();

});