// JavaScript Document


function menurollover(deze, tiptext, inout, text_color, bg_color) {
	if(inout == 'in') {
		changeblediv = document.getElementById('tip');
	changeblediv.style.visibility='visible';
	changeblediv.innerHTML = tiptext;
	} else {
		changeblediv = document.getElementById('tip');
	changeblediv.style.visibility='hidden';
	}
	
	deze.style.backgroundColor = bg_color;
	deze.style.color = text_color;
	

	
}



