//Hide the toggle container on load
$('.page #toggle').hide();

//Slide up and down & toggle the Class on click
$('h3.trigger').click(function(){
  $(this).toggleClass('active').next('#toggle').slideToggle('slow');
  return false;
});
$(document).ready(function() {  
  $('.oembed').oembed({
    embedMethod: "replace",
    maxWidth: 370
    });
  $('.medBrandFeatureVideo').oembed(null,
     {
      embedMethod: "replace",
      maxWidth: 798,
      maxHeight: 448,
      vimeo: { autoplay: false, title: false, byline: false, portrait: false }
      });
});
