

$(document).ready(function() {

	$(".photo_caption").each(function (i) {
		img_position = $(this).position();
		img_height = $(this).height();
		img_width = $(this).width();
		img_alt = $(this).attr("title");

		img_margin_bottom = $(this).css("margin-bottom");
		img_margin_bottom = img_margin_bottom.substring(0, (img_margin_bottom.length - 2));
		img_margin_bottom = img_margin_bottom * 1;

		div_id = "photo_caption_div" + i;

		div_contents = "<div id=\"" + div_id + "\" class=\"photo_caption_div\">";
		div_contents = div_contents + "<div class=\"photo_caption_div_text\">";
		div_contents = div_contents + img_alt;
		div_contents = div_contents + "</div>";
		div_contents = div_contents + "</div>";

		$(this).after(div_contents);

		$("#" + div_id).css("width", img_width + "px");
		$("#" + div_id).css("top", ( (img_position.top + img_height) + 14) + "px");
		$("#" + div_id).css("left", img_position.left + "px");

		div_height = $("#" + div_id).height();

		$(this).css("margin-bottom", (img_margin_bottom + div_height) + "px");

	});
	
});


