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

    $('#header').prepend($('#h1_a'));
		

    $('#header').after($('#promo'));
    $('#main').before($('#spacer'));
    $('#main').prepend($('#quote_form_wrapper'));

});//ready



