 	// toon 1 top5 product
 	// tonen bij onmouseover van link, of bij laden van pagina (zie call onderin)
 	var current_top5 = 0;
 	function showTop5(nr) {
 		
 		// doorloop divs met de producten
 		cn = document.getElementById('top5_prods').childNodes;
 		n = 0;
 		for(i = 0; i < cn.length; i++) {
 			cn_node = cn[i];
 			if(cn_node.nodeType == 1) {
 				if((n+1) == nr) {
 					cn_node.style.display = 'block';
 				} else {
	 				cn_node.style.display = 'none';
	 			}
	 			n++;
	 		}
 		}
 		
 		// doorloop de 'nummer-links' 
 		cn = document.getElementById('top5_nrs').childNodes;
 		n = 0;
 		for(i = 0; i < cn.length; i++) {
 			cn_node = cn[i];
 			if(cn_node.nodeType == 1) {
 				if((n+1) == nr) {
 					cn_node.className = 'sel';
 				} else {
	 				cn_node.className = '';
	 			}
	 			n++;
	 		}
 		}
 		current_top5 = nr;
 	}
 	function nextTop5() {
 		showTop5(current_top5 >= 5 ? 1 : current_top5+1);
 	}