﻿$(document).ready(function()
{
    var _sections = $(".section", "#sectioned-content");
    
    if(_sections.length > 0)
    {
        //add the scrollbar to avoid clunk animations in FF
        $("html").css("overflow-y", "scroll");
        
        $(_sections).each(function(index, item){
            var _this = $(item);
            var _content = $(".content", _this);
            var _summaryContent = $(".summary", _content);
            var _mainContent = $(".main", _content);
//            
//            $(_content).height(_summaryContent.height());            
//            
            $(".title, .hide a", _this).click(function(event){
                event.preventDefault();
                
                $(_this).toggleClass("open");
                $(_mainContent).slideToggle();
            });
        });
    }
});
