/**
* @description	JavaScript file which inserts prefixes to headings in news section
*/

$$('div.bottom div.article>h2').each( function(element) {
	element.insert({
		'top': "<span class='prefix'>Nieuws </span>"
	});
});