﻿window.onload = function() {
	var children = document.getElementById('topmenu').childNodes;
	for(var c=0;c<children.length;c++) {
		children[c].onmouseover = function() {
			this.className='hover';
    	}
		children[c].onmouseout = function() {
			this.className='';
    	}
    }
}
