
$(document).ready(function(){
  $('#content-main div > div > div > p:first').each(function () {
    var $this = $(this);
    $this.addClass('first-of-type');
  });				   
});



