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

        $('.logo').after($('#header-items'));
        $('.header').after($('.photo-block'));		
        $('.features').append($('.testimonial'));
        $('.photo-block').after($('.features'));        
        $('.content-left-interior .box-middle').prepend($('.photo-interior'));
        $('.photo-block').append($('.form'));
        $('.content-right').prepend($('.form-interior'));
        $('.form-interior').after($('.testimonial'));

});//ready



