// JavaScript Document uft-8: äöü
Hyphenator.config({
	classname : 'silbentrennung',
	donthyphenateclassname : 'keineSilbentrennung',
	minwordlength : 5,
	intermediatestate : 'visible',
	onhyphenationdonecallback : function () {
		window.status='Silbentrennung abgeschlossen.';
	},
	onerrorhandler : function (e) {
		//do nothing
	}
});

Hyphenator.run();

jQuery(document).ready(function(){
		jQuery('.galleryIcons a').click(function(event){
			jQuery(this).addClass('clicked');
			jQuery(this).animate({ 
				opacity: .0
			}, 250 );
		})
	}
)