/*
  Custom ready function
  This should be used to reposition elements or to define and use custom functions
*/
$(document).ready(function(){

    $('.logo').append($('.byline'));
    $('.header').append($('.mainnav'));
    $('.header').after($('.photo-block'));
    $('.photo-block').after($('.features'));
    $('.photo-block').append($('.form'));
    $('.content-right').before($('.content-left'));
    $('.articles ul li:first-child').addClass('nodivider');
    $('.features').append($('.testimonial'));
    $('.header').after($('.photo-block-interior'));
    if($('.photo-block-interior').length > 0){
        $('.content-left').prepend($('.testimonial'));
    }
    

});//ready



