// use noconflict mode
jQuery(document).ready(function ($) {

	var hyphenatorSettings = {
		minwordlength: 4,
		defaultlanguage: 'nl',
		useCSS3hyphenation: true,
		unhide: 'progressive'
	};
	Hyphenator.config(hyphenatorSettings);
	Hyphenator.run();
			
});
