function MenuHover(obj, name, status) {
	var img = 'img/'+name+'_';
	img+= (status) ? 'on' : 'off';
	obj.src = img+'.gif';
}
