$(function(){
	$("em.dimage")
		.each(function(){
			var objImg = document.createElement('img');
			objImg.src = $(this).children(0).attr("href");
			objImg.alt = $(this).children(0).text();
			objImg.title = $(this).children(0).text();
		$(this).children(0).remove();
		$(this).append(objImg);
		$("body").css({"height":"100%"});
	});
});