	document.write('<div id=\"tickertape\" style=\"position:relative;overflow:hidden\"><div style=\"position:absolute;left:0;top:0;white-space:nowrap\">AEX-index <strong class=\"up\">329,35</strong> <em class=\"up\">(0,85%)</em>&nbsp;&nbsp;AEGON <strong class=\"up\">4,36</strong> <em class=\"up\">(0,95%)</em>&nbsp;&nbsp;ASML Holding <strong class=\"up\">20,80</strong> <em class=\"up\">(0,92%)</em>&nbsp;&nbsp;Ahold <strong class=\"up\">9,82</strong> <em class=\"up\">(1,91%)</em>&nbsp;&nbsp;Air France-KLM <strong class=\"up\">11,01</strong> <em class=\"up\">(0,73%)</em>&nbsp;&nbsp;Akzo Nobel <strong class=\"down\">43,15</strong> <em class=\"down\">(-0,35%)</em>&nbsp;&nbsp;ArcelorMittal <strong class=\"up\">24,46</strong> <em class=\"up\">(1,05%)</em>&nbsp;&nbsp;BAM Groep <strong class=\"up\">4,20</strong> <em class=\"up\">(2,24%)</em>&nbsp;&nbsp;Boskalis Westm. <strong class=\"down\">28,81</strong> <em class=\"down\">(-1,55%)</em>&nbsp;&nbsp;Corio <strong class=\"up\">47,33</strong> <em class=\"up\">(1,76%)</em>&nbsp;&nbsp;DSM <strong class=\"down\">34,59</strong> <em class=\"down\">(-0,35%)</em>&nbsp;&nbsp;Fugro <strong class=\"up\">47,35</strong> <em class=\"up\">(1,25%)</em>&nbsp;&nbsp;Heineken <strong class=\"up\">35,83</strong> <em class=\"up\">(1,04%)</em>&nbsp;&nbsp;ING Groep <strong class=\"up\">7,57</strong> <em class=\"up\">(1,82%)</em>&nbsp;&nbsp;KPN <strong class=\"down\">11,41</strong> <em class=\"down\">(-0,17%)</em>&nbsp;&nbsp;Philips <strong class=\"up\">23,66</strong> <em class=\"up\">(1,24%)</em>&nbsp;&nbsp;Randstad <strong class=\"up\">32,13</strong> <em class=\"up\">(2,39%)</em>&nbsp;&nbsp;Reed Elsevier <strong class=\"up\">9,65</strong> <em class=\"up\">(0,04%)</em>&nbsp;&nbsp;Royal Dutch Shell A <strong class=\"up\">21,76</strong> <em class=\"up\">(1,42%)</em>&nbsp;&nbsp;SBM Offshore <strong class=\"up\">12,78</strong> <em class=\"up\">(0,43%)</em>&nbsp;&nbsp;TNT <strong class=\"down\">20,79</strong> <em class=\"down\">(-0,02%)</em>&nbsp;&nbsp;TomTom <strong class=\"up\">4,57</strong> <em class=\"up\">(0,79%)</em>&nbsp;&nbsp;Unibail-Rodamco <strong class=\"up\">155,30</strong> <em class=\"up\">(0,71%)</em>&nbsp;&nbsp;Unilever cert. <strong class=\"down\">21,33</strong> <em class=\"down\">(-0,09%)</em>&nbsp;&nbsp;Wereldhave <strong class=\"up\">67,10</strong> <em class=\"up\">(0,80%)</em>&nbsp;&nbsp;Wolters Kluwer <strong class=\"up\">15,31</strong> <em class=\"up\">(0,92%)</em>&nbsp;&nbsp;</div></div>');
	
	var ttBar;
	var ttSpeed = -1;
	var ttTimerID;
	var ttWidth;
	
	function ttScroll() {
		ttBar.style.left = ttBar.offsetLeft + ttSpeed + "px";
		if (ttBar.offsetLeft < -ttWidth) {
			ttBar.style.left = 0;
		}
		setCookie("ttScrollOffset", ttBar.style.left);
		ttStartScroll();
	}
	
	function ttStopScroll() {
	    if (ttTimerID) clearTimeout(ttTimerID);
	}
	function ttStartScroll() {
		ttTimerID = setTimeout("ttScroll()", 25);
	}
	
	function ttScrollInit() {
		ttBar = document.getElementById("tickertape");
		if (ttBar) {	
			ttBar = ttBar.getElementsByTagName("DIV")[0];
			ttWidth = ttBar.offsetWidth;
			ttBar.innerHTML = ttBar.innerHTML+ttBar.innerHTML;
			ttBar.style.left = getCookie("ttScrollOffset") || 0;
			ttScroll();
		}
	}
	ttScrollInit();
