function changeImg(id,type,txt){
	if (type==1){
		document.getElementById('item'+id).src = 'images/menu/menu_'+txt+'_active.gif';
	} else {
		document.getElementById('item'+id).src = 'images/menu/menu_'+txt+'.gif';
	}
}

function changeImgGen(id,type,txt){
	if (type==1){
		document.getElementById('item'+id).src = 'koppen/menu.php?color=red&txt='+txt;
	} else {
		document.getElementById('item'+id).src = 'koppen/menu.php?txt='+txt;
	}
}