window.onload = function() {

	/*
	 *	Topmenu IE6 fix
	 */

	if (document.all && document.getElementById) {

		root = document.getElementById("menu");

		for (i=0; i < root.childNodes.length; i++) {

			node = root.childNodes[i];

			if (node.nodeName == "LI") {
				node.onmouseover = function() {
					this.className += " iehover";
				}
				node.onmouseout	= function() {
					this.className = this.className.replace("iehover", "");
				}
			}
		}

	}

	/*
	 *	Offerboxes on frontpage
	 */

	var tour	= document.getElementById('tour');
	var demo	= document.getElementById('demo');
	var order	= document.getElementById('order');

	if(tour || demo || order) {

		tour.onmouseover = demo.onmouseover = order.onmouseover = function() {
			this.className += " iehover";
		}

		tour.onmouseout = demo.onmouseout = order.onmouseout = function() {
			this.className = this.className.replace("iehover", "");
		}

	}

}