/**
* @author Rafael Ritter
* @url n/d
*/

(function ($) {

$.fn.subtitleesq = function (stClass) {
	return this.each(function () {
		alt = $(this).attr('alt');
	    if (alt) { 
			$(this).wrap("<span class=\"imgnoticia imgesquerda\"></span>");
            $(this).after("<div class=\"legendadir\">"+alt+"</div>");
			//alert(alt);
		}
	});
};

})(jQuery); 


(function ($) {

$.fn.subtitledir = function (stClass) {
	return this.each(function () {
		alt = $(this).attr('alt');
	    if (alt) { 
			$(this).wrap("<span class=\"imgnoticia imgdireita\"></span>");
            $(this).after("<div class=\"legendaesq\">"+alt+"</div>");
			//alert(alt);
		}
	});
};

})(jQuery); 