$(function() {
	$('.main-menu').append('<li><span class="phone-num">574-233-3486</span></li>');
	$('.main-menu > li:not(:last)').after('<li><span class="menu-line">&nbsp;</span></li>');
	
	$('.foot-menu').append('<li><span>'+$('#copyright').html()+'</span></li>');
	
	if($('.post').length > 0){
		$('.post').each(function() {
			//var title = ;
			$(this).find('p:first').prepend($(this).children('.text-line'));
		});
	}	
	
	if($('.wpcf7').length > 0) {
		$('.wpcf7 textarea').unwrap();
		$('p:empty').remove();
	}
});
