/*
 look for all blockquote elements
 add quote gfx
 suck in cite
 round corners
*/

$(function(){
  $('body div#page div.testimonials blockquote')
  .prepend('<img class="lquote" src="/wp-content/themes/workplace_new/images/lquote.gif"/>')
    .children('p')
      .append('<img class="rquote" src="/wp-content/themes/workplace_new/images/rquote.gif"/>')
    .end()
    .each(function(){
      $(this).next()
        .remove()
        .addClass('cite')
        .appendTo($(this));
    });
  $('body div#page div#content blockquote')
  .prepend('<img class="quote-curve" src="/wp-content/themes/workplace_new/images/quote-top-bg.gif"/>')
  .append('<img class="quote-curve" src="/wp-content/themes/workplace_new/images/quote-bottom-bg.gif"/>')
});