jQuery(document).ready(function() {
	jQuery("img.aligncenter").each(function(){
		var actimg = jQuery(this).attr("class"); 
		var idimg = actimg.replace( "aligncenter size-full wp-image-", "" );
		var titolo = jQuery("#img"+idimg).attr("title");
		var percorso = jQuery("#img"+idimg).attr("href");
		if (percorso!=undefined) jQuery(this).wrap("<a href='"+percorso+"' title='"+titolo+"' ></a>");
	});
	
	jQuery("img.alignnone").each(function(){
		var actimg = jQuery(this).attr("class"); 
		var idimg = actimg.replace( "alignnone size-full wp-image-", "" );
		var titolo = jQuery("#img"+idimg).attr("title");
		var percorso = jQuery("#img"+idimg).attr("href");
		if (percorso!=undefined) jQuery(this).wrap("<a href='"+percorso+"' title='"+titolo+"' ></a>");
	});
});