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

		$('.logo').append($('.byline'));
		$('.bgheader').after($('.bgmainnav'));
		$('.content-left').prepend($('.form-block'));
		$('.content-left-interior p').eq(0).after($('.photo-interior'));
		$('.articles:last').addClass('last');
        if($('#contact_form').length == 0){
		  $('.sitepage .content-left-interior p:last').addClass('last');
        }
		$('#left-col').height($('.content').height());

});//ready



