/*
  Custom ready function
  This should be used to reposition elements or to define and use custom functions
*/
$(document).ready(function(){
  // Element repositioning
  $('em.error').remove();
  $('#header').append($('.mainnav'));
  $('#box-middle').prepend($('#temp_2').html());
  $('#temp_2').remove();
  $('#article').prepend($('#welcome-photo'));
  $('#article').after($('#content-right'));
});//ready


