//hoofdnavigatie sans-framework
var x = document.getElementById("dynamic").getElementsByTagName("li");
var i=0;

for (i=0;i<x.length;i++) {
	x[i].onmouseover = over; 
	x[i].onmouseout = out;
	x[i].onmouseup = over;
}
function over() {	this.className='over'; this.style.zIndex = 1600; }
function out() 	{	this.className=''; this.style.zIndex = 190; }
function down() {	this.className='down';  }


