$(document).ready(function() {
	make_blog_more();

});


function make_blog_more() {
	$('.blog_post').each(function(index) {
		var post_id = $(this).find('.post_id').html();
		var more_link = $(this).find('.more-link');
		if (more_link.length > 0) {
			$(this).find('.blog_content').append("<a href='blog?p="+post_id+"'><div class='my_more_link'>Click here to read more...</div></a>")
		}
	
		
		
		
	});
}



