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

        // clear errors
		$('em.error').remove();
		
        // reposition content
        $('.logo').after($('.national-coverage'));
		$('.national-coverage').after($('.mainnav'));
		$('.box-middle').prepend($('#temp').html());
		$('#temp').remove();
		
		//interior photo
		$('.content-left').prepend($('#interior-photo'));
		
		//homepage content pic
		$('#set').append($('.content p:eq(0)'));
		$('.content h3:eq(0)').before($('#set'));

		// check to see that this is still needed
        $('.partner_with_us textarea').click(function(){
   			this.select();
   			return false;
		});
		

});//ready

