//Dimensão das imagens da postagem
$(document).ready(function() {
	
$("#postagem img").each(function(i){
var src =	$(this).attr("src");
var src = src.replace('../','');
$(this).attr("src",src);
	
	$("#postagem img").eq(i).removeAttr("width");
	$("#postagem img").eq(i).removeAttr("height");
	$("#postagem img").eq(i).removeAttr("id");
	
	if($("#postagem img").eq(i).attr("style") == "float: left;" || $("#postagem img").eq(i).attr("style") == "vertical-align: text-bottom;" || $("#postagem img").eq(i).attr("style") == "vertical-align: baseline;" || $("#postagem img").eq(i).attr("style") == "vertical-align: top;" || $("#postagem img").eq(i).attr("style") == "vertical-align: middle;" || $("#postagem img").eq(i).attr("style") == "vertical-align: bottom;" || $("#postagem img").eq(i).attr("style") == "vertical-align: text-top;" ){
		$("#postagem img").eq(i).wrap("<div style='width:50%;margin:0 5px 5px 0'></div>")
		$("#postagem img").eq(i).removeAttr("height");
		$("#postagem img").eq(i).css({'width':100+'%','margin':'0 5px 5px 0'});

	}else if($("#postagem img").eq(i).attr("style") == "float: right;"){
		$("#postagem img").eq(i).wrap("<div style='width:50%; float:right;margin:0 0 5px 5px'></div>")
		$("#postagem img").eq(i).removeAttr("height");
		$("#postagem img").eq(i).css({'width':100+'%','margin':'0 0 5px 5px'});

	}else{
		$("#postagem img:first-child").eq(i).wrap("<div style='width:100%; margin-bottom:5px'></div>");
		$("#postagem img:first-child").eq(i).removeAttr("height");
		$("#postagem img:first-child").eq(i).css({'width':453,'margin-bottom':'5px'});
	};//if
	
});//each
$("#postagem img").css({'max-width':'453px'});

$("#detalheRodape").css({'width':$("body").width()});

});
