﻿function setUpExpandableBlocks() {
    $("div.expandableBlockContainer > .head").click(function() {
        $(this).parent().children("div.contents").slideToggle("normal");
        $(this).children("table").children("tbody").children("tr").children("td.instructions").toggle();
    });
}