function pimpMyGallery() {

	var durchlauf = 0;

	$('#gallery-1').children().each (
		function() {
			if(this.tagName != 'BR') {
				if(durchlauf == 0) {
					this.$colorbox = $('<dl></dl>', { 'class': 'box_brown' }).insertAfter(this);
				}
				if(durchlauf == 1) {
					this.$colorbox = $('<dl></dl>', { 'class': 'box_gray' }).insertAfter(this);
				}
				if(durchlauf == 5) {
					this.$colorbox = $('<dl></dl>', { 'class': 'box_blue' }).insertAfter(this);
					durchlauf = -1;
				} 
				durchlauf++;
			}
		}
	)	
}



