/* Sets rounded corners for blocks. */
/* Will probably change this to do all by class -- just using ids now for testing */

jQuery(function($) {
  $(".rounded").corner();
  $(".top-rounded").corner("top");
  $(".bottom-rounded").corner("bottom");
  $(".top-left-rounded").corner("tl");
  $(".top-right-rounded").corner("tr");
  $(".bottom-left-rounded").corner("bl");
  $(".bottom-right-rounded").corner("br");
  $(".hamburger").hamburger();
});
