window.addEvent( 'domready', function(){
	/*
	$$('#topMenu > li:first-child').setStyles({
		'width' : '101px',
		'background' : 'url(/img/btn/home_btn_link.png) no-repeat scroll 0 0'
		
	});
	$$('#topMenu > li.active:first-child').setStyles({
		'background' : 'url(/img/btn/home_btn_hover.png) no-repeat scroll 0 0'						
	});
	$$('#topMenu > li:first-child a').setStyles({
		'border-left' : '0'
	});
	$$('#topMenu > li:first-child').addEvent('mouseover', function(){
		this.setStyle('background', 'url(/img/btn/home_btn_hover.png) no-repeat scroll 0 0');
	});
	
	$$('#topMenu > li:first-child').addEvent('mouseleave', function(){
		this.setStyle('background', 'url(/img/btn/home_btn_link.png) no-repeat scroll 0 0');
	});
	
	$$('#topMenu > li:last-child').setStyles({
		'width' : '118px',
		'background' : 'url(/img/btn/btn_contact_link.png) no-repeat scroll 0 0'
		
	});
	$$('#topMenu > li.active:last-child').setStyles({
		'background' : 'url(/img/btn/btn_contact_hover.png) no-repeat scroll 0 0'						
	});
	$$('#topMenu > li:last-child').addEvent('mouseover', function(){
		this.setStyle('background', 'url(/img/btn/btn_contact_hover.png) no-repeat scroll 0 0');
	});
	
	$$('#topMenu > li:last-child').addEvent('mouseleave', function(){
		this.setStyle('background', 'url(/img/btn/btn_contact_link.png) no-repeat scroll 0 0');
				});
				
	try{
		var lastitem = $$('#topMenu li >a').getLast('li');
		lastitem.setStyle('border-right','none');
	}
	catch( e ){}
*/
	try{
		var lastbanner4 = 	$$('#home_banners li:nth-child(4n+0)');
		lastbanner4.setStyle('margin-right',0);
	}
	catch( e ){}
	
	try{
		var nieuws_small_items = 	$$('#nieuws_colum_1 li:nth-child(odd)');
		nieuws_small_items.setStyle('background','white');
		
		var nieuws_big_items = 	$$('#nieuws_colum_2 li:nth-child(odd)');
		nieuws_big_items.setStyle('background','#e6e7e8');
	}
	catch( e ){}
});


