// JavaScript Document

// Makes the first <p> tag after <h2> appear bold

$(document).ready(function() { 
  $('h2+p').addClass('strong'); 
});


