/*
  Custom ready function
  This should be used to reposition elements or to define and use custom functions
*/
$(document).ready(function(){
    
		$('.header').append($('.mainnav'));
		
		$('.content').before($('.photo-block'));
		if($('.content-inner').length > 0){
			$('.content-left').prepend($('.photo-interior'));
			}
		$('.content-left').before($('.features'));


});//ready



