/*$Id: image_caption.js,v 1.1 2008/02/23 06:24:07 davidwhthomas Exp $*/
$(window).load(function(){
	$("img.caption").each(function(i) {
		var imgwidth    = $(this).width();
		var imgheight   = $(this).height();
		var credittext  = (($(this).attr('alt')   != undefined) && ($(this).attr('alt')   != '')) ? $(this).attr('alt')   : '';
		var captiontext = (($(this).attr('title') != undefined) && ($(this).attr('title') != '')) ? $(this).attr('title') : '';
		var alignment   = $(this).attr('align');

		$(this).attr({align:""});
/*
		$(this).wrap("<div class=\"fotoleg\" style=\"float:" + alignment + "\"></div>");
*/
		$(this).wrap("<div class=\"fotoleg\"></div>");
		$(this).parent().width(imgwidth);
		$(this).parent().append("<div class=\"legen\"><p class=\"credito\">" + credittext + "</p><p class=\"legenda\">" + captiontext + "</div>");
	});
});