/* Author: 

*/

$(document).ready(function () {
  /* Code to do menu stuff */
  $("nav > ul > li").children("ul").hide();
  $("nav > ul > li").mouseenter(function () {
    $(this).children("ul").show();
  }).mouseleave(function () {
    $(this).children("ul").hide();
  });
  
  /* Code to do show/hide on content */
  $(".showHide > blockquote").hide();
  $(".showHide > h6").click(function () {
    $(this).parent().find("blockquote").toggle();
  });
});

