$(document).ready(function(){
	var items = $('.nieuws');
	if (items != null && items.length != 0) {
		$('<div id="scroller"><div class="scroll_wrap"></div></div>').appendTo('#page-wrap');
		
		items.each(function(){
				var href = $('h3:first a',this).attr('href');	
				var tShort = $('p',this).text().slice(0,100) + "....";
				$('<a></a>').appendTo('#scroller .scroll_wrap')
				.append($('a img:first',this))
				.append('<h3>'+$('h3:first a',this).text()+'</h3>')
				.append('<p>' + tShort + '</p>')
				.attr('href',href)
				.addClass('news_item');
				$(this).remove();			
			});
		if (items.length > 1) {
			$('#scroller .scroll_wrap').newsScroll({speed:600, delay:5000});
		};
	};
});