		<!--
			var nBetweendelay	=	5000
			var nFont			=	'Verdana, Arial, Helvetica, sans-serif'
			var nFontsize		=	10		
			var nMwidth			=	101
			var nFromleft		=	24
			var nFromtop		=	0
			var iAantalnieuws   =   0;

			huidignieuwsitem = 0;
		
			function controleren_browser(){
				this.ver=navigator.appVersion
				this.dom=document.getElementById?1:0
				this.ie7=(this.ver.indexOf("MSIE 7")>-1 && this.dom)?1:0;
				this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0;
				this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
				this.ie4=(document.all && !this.dom)?1:0;
				this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
				this.ns4=(document.layers && !this.dom)?1:0;
				this.bw=(this.ie7 || this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns5)
				return this
			}

			var browser = new controleren_browser()
			
			function makeNewsItem(obj,nest){
				nest=(!nest) ? '':'document.'+nest+'.'					
			   	this.css=browser.dom? document.getElementById(obj).style:browser.ie4?document.all[obj].style:browser.ns4?eval(nest+"document.layers." +obj):0;		
				this.evnt=browser.dom? document.getElementById(obj):browser.ie4?document.all[obj]:browser.ns4?eval(nest+"document.layers." +obj):0;			
				this.scrollHeight=browser.ns4?this.css.document.height:this.evnt.offsetHeight
				this.moveIt=b_moveIt;	this.bgChange=b_bgChange;
				this.slideUp=b_slideUp; this.slideDown=b_slideDown;
				this.clipTo=b_clipTo;
			    this.obj = obj + "Object"; 	eval(this.obj + "=this")		
			}

			function b_moveIt(x,y){this.x=x; this.y=y; this.css.left=this.x; this.css.top=this.y}
			function b_bgChange(color){if(browser.dom || browser.ie4) this.css.backgroundColor=color; else this.css.bgColor=color}
			function b_clipTo(t,r,b,l){
				if(browser.ns4){this.css.clip.top=t; this.css.clip.right=r; this.css.clip.bottom=b; this.css.clip.left=l
				}else this.css.clip="rect("+t+","+r+","+b+","+l+")";
			}
			function b_slideUp(ystop,moveby,speed,fn,wh){
				if(!this.slideactive){
					if(this.y>ystop){
						this.moveIt(this.x,this.y-5); eval(wh)
						setTimeout(this.obj+".slideUp("+ystop+","+moveby+","+speed+",'"+fn+"','"+wh+"')",speed)
					}else{
						this.slideactive=false; this.moveIt(0,ystop); eval(fn)
						
						// ---
						huidignieuwsitem++;
						if (huidignieuwsitem==iAantalnieuws) huidignieuwsitem=0;
						topMenu();
						// ---
					}
				}
			}
			function b_slideDown(ystop,moveby,speed,fn,wh){
				if(!this.slideactive){
					if(this.y<ystop){
						this.moveIt(this.x,this.y+5); eval(wh)
						setTimeout(this.obj+".slideDown("+ystop+","+moveby+","+speed+",'"+fn+"','"+wh+"')",speed)
					}else{
						this.slideactive=false; this.moveIt(0,ystop); eval(fn)
						
						setTimeout("topMenu("+huidignieuwsitem+")",nBetweendelay);
					}
				}
			}

			function newsItemInit(){
				oTopMenu=new Array()
				zindex=10
				for(i=0;i<iAantalnieuws;i++){
					oTopMenu[i]=new Array()
					oTopMenu[i][0]=new makeNewsItem('divTopMenu'+i)
					oTopMenu[i][1]=new makeNewsItem('divTopMenuBottom'+i,'divTopMenu'+i)
					oTopMenu[i][2]=new makeNewsItem('divTopMenuText'+i,'divTopMenu'+i)
					oTopMenu[i][1].moveIt(0,0)
					oTopMenu[i][0].clipTo(0,nMwidth,0,0)
					oTopMenu[i][0].moveIt(nFromleft,nFromtop)
					oTopMenu[i][0].css.visibility="visible"
				}
				setTimeout("topMenu()",1000);
			}

			function topMenu(){
				if(oTopMenu[huidignieuwsitem][1].y==0) oTopMenu[huidignieuwsitem][1].slideDown(oTopMenu[huidignieuwsitem][2].scrollHeight+20,10,40,'oTopMenu['+huidignieuwsitem+'][0].clipTo(0,nMwidth,oTopMenu['+huidignieuwsitem+'][1].y,0)','oTopMenu['+huidignieuwsitem+'][0].clipTo(0,nMwidth,oTopMenu['+huidignieuwsitem+'][1].y,0)')
				else if(oTopMenu[huidignieuwsitem][1].y==oTopMenu[huidignieuwsitem][2].scrollHeight+20) oTopMenu[huidignieuwsitem][1].slideUp(0,10,40,'oTopMenu['+huidignieuwsitem+'][0].clipTo(0,nMwidth,oTopMenu['+huidignieuwsitem+'][1].y,0)','oTopMenu['+huidignieuwsitem+'][0].clipTo(0,nMwidth,oTopMenu['+huidignieuwsitem+'][1].y,0)')
			}
			
		// -->

