$(function() {
	$('img').each(function() {
		
		// Bilder mit Beschreibung mit einem umschließenden DIV versehen.
		
		if ($(this).attr('alt') != '') {
			var alt = $(this).attr('alt');
			$(this).unwrap();
			if ($(this).css('float') == 'right') {
				$(this).css('float', 'none');
				$(this).wrap('<div class="bild rechts" />');
			} else {
				$(this).wrap('<div class="bild" />');
			}
			$(this).parent('.bild').append('<p>'+alt+'</p>');
		}
	})
})
