/*
  Custom ready function
  This should be used to reposition elements or to define and use custom functions
*/
$(document).ready(function(){
  // Element repositioning
  $('.logo').append($('.byline'));
  $('.header').after($('.mainnav'));
  $('.mainnav').after($('.photo-block'));
  $('.photo-block').after($('.partners'));
  $('.content-left').prepend($('#photo-interior'));
  
  //replace contact form header on testimonial page
  $('body').not('.sitepage').find('div#contact_form h3').html('Message...');
});//ready


