jQuery(function(){
		// from init.js
    	jQuery(".ptoggle-container").css({display: "none"});
		 
        jQuery(".ptoggle-holder:not(.photo-tour) h2.ptoggle-trigger").click(function(){
            jQuery(this).toggleClass("active").nextAll(".ptoggle-container").slideToggle("slow");
            return false; 
        });
		
        jQuery(".ptoggle-holder.photo-tour h2.ptoggle-trigger").click(function(){
            jQuery(this).toggleClass("active").nextAll(".ptoggle-container").toggle();
			
            return false;
        });
});
