$(function(){
	$(".submenu LI:first").addClass("first");
	
	$('.post').corner('15px');
	//$('.forabg').corner('15px');
	//$('.forumbg').corner('15px');

	$(".post .indent").each(function(){
		info_section = $(this).children(".info").html();
		add2any_section = $(this).children(".text-box").children(".addtoany_share_save_container").html();

		$(this).children(".info").remove();
		$(this).children(".text-box").children(".addtoany_share_save_container").remove();
		
		$(this).children('.text-box').append('<div class="info"></div>');
		$(this).children('.text-box').children('.info').html(info_section);

		$(this).children('.text-box').append('<div class="addtoany_share_save_container"></div>');
		$(this).children('.text-box').children('.addtoany_share_save_container').html(add2any_section);
	});
});