/**
 * Commonly used JS in the theme
 */
jQuery(document).ready(function(){
  
  if(jQuery(".menu-item-406").length){
    jQuery(".menu-item-406 a").attr("target", "_blank");
  }
  
  // Add "day-with-date" to the current day on calendar
  if(jQuery(".current-day .calnk").length){
    jQuery(".current-day").addClass("day-with-date");
  }
  
});

