/* /sitenav/section.helper.js
   
   Include /styles/bhm_section_class.css in page
   
   Usage: 
     getSectionHeaderWrapper()
     Html content (title of the section)
     getSectionBodyWrapper()
     Html content (body of the section)
     getSectionFooterWrapper()
*/

function writeSectionHeaderWrapper() {
  document.write("<!-- Section header begin --><div class='Section'> <div class='SubSection'> <div class='titlebar_full'> <div class='titlebar_lft'> </div> <div class='titlebar_rgt'><!-- Section header end, insert section title //-->");
}

function writeSectionBodyWrapper() {
  document.write("<!-- Section body begin //--></div><!--  End titlebar_rgt //--> </div><!-- End titlebar_full //--> <div> <div class='t'> <div class='b'> <div class='l'> <div class='r'> <div class='bl'> <div class='br'> <div class='tl'> <div class='tr_half'> <div><!-- Section body end, insert section content //-->");
}

function writeSectionFooterWrapper() {
  document.write("<!-- Section footer begin //--></div><!-- End div //--> <div class='push'> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div><!-- End .SubSection //--> <div class='push'> </div> </div><!-- End Section //-->");
}