$( function () {

	// IMAGE CUTTER
	$('img').error( function () {
		var e = $(this), a = e.attr('alt');
		if (a) {
			e.replaceWith( $('<span/>').html(
				'<span style="border:solid 1px #aaa;color:#666;padding:2px 4px;">' + a + '</span>'
			) );
		} else {
			e.remove();
		}
	} );

} );

