$(window).load(function() {
	//run code
	
	
	setTimeout(function(){



						  $('.rw_callout_c a.rw_cta').each(function(){
						  
						  	  
							  //clone and rename
							  $(this).clone().prependTo($(this).closest('.rw_callout_c'));

							  var rw_parent_width = $(this).closest('.rw_callout_c').width();
							  var rw_self_width = $(this).width();
							  var rw_final_horz = (rw_parent_width - rw_self_width)-17;
							  $(this).closest('.rw_callout_c').children('.rw_callout_c a.rw_cta').css({'margin-left':rw_final_horz+'px'})

							  /** var rw_parent_ht_c = $(this).closest('.rw_callout_c').height(); **/
							  var rw_parent_ht_c = $(this).closest('.rw_callout_c').outerHeight( true );
							  var rw_self_ht_c = ($(this).outerHeight( true )*2)+2;
							  var rw_final_vert_c = rw_parent_ht_c - rw_self_ht_c;
							  $(this).closest('.rw_callout_c').children('.rw_callout_c a.rw_cta').css({'margin-top':rw_final_vert_c+'px'})

							  //remove original
							  $(this).remove();

						  });//close each

			},1);



	
	
	
	
	
});//close window load









