/** 
 * Menu Highlighter
 * Highlights the current menu item
 *
 * Author: Jürgen Galler
 */
 
if (window.addEventListener)
	/** DOMMouseScroll is for mozilla. */
	window.addEventListener('DOMMouseScroll', wheel, false);

/** IE/Opera. */
window.onmousewheel = document.onmousewheel = wheel;

function highlightMenuItem(item)
{
	s = document.getElementById('home');
	s.style.fontWeight = 'normal';
	s = document.getElementById('preisliste');
	s.style.fontWeight = 'normal';
	s = document.getElementById('gutscheine');
	s.style.fontWeight = 'normal';
	s = document.getElementById('natursalz');
	s.style.fontWeight = 'normal';
	s = document.getElementById('wellness');
	s.style.fontWeight = 'normal';
	s = document.getElementById('kontakt');
	s.style.fontWeight = 'normal';
	s = document.getElementById('impressum');
	s.style.fontWeight = 'normal';
	s = document.getElementById('links');
	s.style.fontWeight = 'normal';

	s = document.getElementById(item);
	s.style.fontWeight = 'bold';
}
