// ============================================================================
//
// Copyright (C) 2004 BYTE-XXL.COM
//
// Byte XXL IT GmbH 
// Hauptstraße 20
// 69151 Neckargemünd
//
// E-Mail:  info@byte-xxl.com
// Web:     www.byte-xxl.com
// Phone:   +49-6223-9258-0
//  
// ============================================================================

startList = function() {	

	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}

}
window.onload=startList;

function findSolution(f) {
  select	= f.thema.selectedIndex;
	switch( select) {
     case 0: window.location.href = "/index.php";
		 break;
    case 1: window.location.href = "/marketing/marketing-analytics.php";
		 break;			 
     case 2: window.location.href = "/media/mobile_marketing/mobile_marketing.php";
		 break;		
    case 3: window.location.href = "/themen/online_research.php";
		 break;	
    case 4: window.location.href = "/themen/intranet.php";
		 break;			 		  	 
	}
 }
