	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=\"down\">326,77</strong> <em class=\"down\">(-1,13%)</em>&nbsp;&nbsp;ASML <strong class=\"down\">34,74</strong> <em class=\"down\">(-1,31%)</em>&nbsp;&nbsp;Aegon <strong class=\"down\">3,93</strong> <em class=\"down\">(-1,95%)</em>&nbsp;&nbsp;Ahold <strong class=\"down\">10,91</strong> <em class=\"down\">(-1,27%)</em>&nbsp;&nbsp;Air France-KLM <strong class=\"down\">4,57</strong> <em class=\"down\">(-2,93%)</em>&nbsp;&nbsp;Akzo Nobel <strong class=\"down\">43,30</strong> <em class=\"down\">(-3,42%)</em>&nbsp;&nbsp;Aperam <strong class=\"down\">15,84</strong> <em class=\"down\">(-2,67%)</em>&nbsp;&nbsp;ArcelorMittal <strong class=\"down\">16,19</strong> <em class=\"down\">(-2,70%)</em>&nbsp;&nbsp;Boskalis <strong class=\"down\">28,07</strong> <em class=\"down\">(-0,28%)</em>&nbsp;&nbsp;Corio <strong class=\"down\">35,56</strong> <em class=\"down\">(-0,10%)</em>&nbsp;&nbsp;DSM <strong class=\"down\">41,90</strong> <em class=\"down\">(-0,25%)</em>&nbsp;&nbsp;Fugro <strong class=\"down\">53,63</strong> <em class=\"down\">(-0,50%)</em>&nbsp;&nbsp;Heineken <strong class=\"up\">39,76</strong> <em class=\"up\">(0,26%)</em>&nbsp;&nbsp;ING <strong class=\"down\">6,62</strong> <em class=\"down\">(-2,91%)</em>&nbsp;&nbsp;KPN <strong class=\"down\">7,98</strong> <em class=\"down\">(-0,85%)</em>&nbsp;&nbsp;Philips <strong class=\"down\">15,78</strong> <em class=\"down\">(-2,86%)</em>&nbsp;&nbsp;PostNL <strong class=\"down\">4,72</strong> <em class=\"down\">(-0,55%)</em>&nbsp;&nbsp;Randstad <strong class=\"up\">27,59</strong> <em class=\"up\">(0,55%)</em>&nbsp;&nbsp;Reed Elsevier <strong class=\"down\">9,25</strong> <em class=\"down\">(-0,88%)</em>&nbsp;&nbsp;Royal Dutch Shell A <strong class=\"down\">27,43</strong> <em class=\"down\">(-0,36%)</em>&nbsp;&nbsp;SBM Offshore <strong class=\"down\">13,39</strong> <em class=\"down\">(-0,48%)</em>&nbsp;&nbsp;TNT Express <strong class=\"down\">9,81</strong> <em class=\"down\">(-0,77%)</em>&nbsp;&nbsp;TomTom <strong class=\"up\">4,51</strong> <em class=\"up\">(2,87%)</em>&nbsp;&nbsp;Unibail-Rodamco <strong class=\"down\">143,05</strong> <em class=\"down\">(-1,34%)</em>&nbsp;&nbsp;Unilever Cert. <strong class=\"down\">25,62</strong> <em class=\"down\">(-0,02%)</em>&nbsp;&nbsp;Wolters Kluwer <strong class=\"up\">14,18</strong> <em class=\"up\">(1,11%)</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();

