$(function(){
  /*
    Blockquote quotes
  */
  $('.rt-blog-page blockquote').each(function() {
    $(this).children('p:first').prepend('<span class="bq-start">&nbsp;</span>');
    $(this).children('p:last').append('<span class="bq-end">&nbsp;</span>');
  });
  
  /*
    Image captions
  */
  //$('.rt-blog-page #rt-body img').after('<p class="credit">test</p>');
 
  $('.rt-blog-page #rt-body img').each(function(index) {
    if($(this).attr("alt") !== 'Description goes here...')
    {
        $('<p class="caption">' + $(this).attr("alt") + '</p>').insertAfter($(this));
    }
  });

  /*
    Section: Spice up the form rows to be highlighted.
  */
  $('.rt-form-row textarea,.rt-form-row input,.rt-form-row select').focus(function(){
    $(this).parents('li').addClass('rt-highlight');
  }).blur(function(){
    $(this).parents('li').removeClass('rt-highlight');
  });
  
});
