// JavaScript Document
$(document).ready(function(){
 	$(".format_text a:has(img)").lightBox();
	$(".format_text a:has(img)").each(function (i) {
		var thetitle = $(this).find("img").attr("alt");
		//alert(thetitle);
		var thestyle = $(this).find("img").attr("style");
		var thewidth = $(this).find("img").width();
		$(this).find("img").removeAttr("class");
		$(this).wrap("<div class='photo_box' style='"+thestyle+"'></div>");
		$(".photo_box:eq("+i+")").append("<p>"+thetitle+"</p>").width(thewidth+8);
	})
});