$(function(){
	/* MOVE CTA BUTTON */
	if($('.type-page #cta_button').is('*')){
		var cta = $('#cta_button').html();
		$('#cta_button').remove();
		$('.entry-content p:first').after('<div id="cta_button">'+cta+'</div>');
	}

	/* UPDATE CTA URL IF TOP LIST EXISTS */
	if($('#top_list li:first-child a:first').is('*')){
		var cta_url = $('#top_list li:first-child a:first').attr('href');
		$('#cta_button a.button').attr('href', cta_url);
	}
});
