/*
  Custom ready function
  This should be used to reposition elements or to define and use custom functions
*/
$(document).ready(function(){
  // Element repositioning
  $('#nav_final').append($('#temp').html());
  $('#temp').remove();
  
  //replace contact form header on testimonial page
  $('.interior-left div#contact_form h3').html('My Testimonial...');
});//ready
