function loadContent(node, subnode){
   //function loadContent(){
   
    //alert(node + " - " + subnode);
  	 var xmlHttp = null;
  	     response = "";
		 
//	if(subnode == "food"){ loadSubnavi("food"); }else{ loadSubnavi("kill"); }
	     
    // Mozilla, Opera, Safari sowie Internet Explorer 7
    if (typeof XMLHttpRequest != 'undefined') {
      xmlHttp = new XMLHttpRequest();
    }
    if (!xmlHttp) {
    // Internet Explorer 6 und älter
    try {
        xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
    } catch(e) {
        try {
            xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
        } catch(e) {
            xmlHttp  = null;
        }
    }
    }
    if (xmlHttp) {
        xmlHttp.open('GET', 'content/'+node+'/'+subnode+'.html', true);
        //xmlHttp.open('GET', 'content/about/philosophie.html', true);
        xmlHttp.onreadystatechange = function () {
            if (xmlHttp.readyState == 4) {
                document.getElementById("mainbox").innerHTML = xmlHttp.responseText;
                response = xmlHttp.responseText;
            }
        };
        xmlHttp.send(null);
    }
    return response;
  }
  
  function deliverParams(node, subnode){

    loadContent(node, subnode);
	if(subnode == "sets"){
	
	loadSubnavi("sets");	
	}else{
	document.getElementById("subnavi").innerHTML = "";
	}
  }
  
 
 
 function loadSubnavi(area){
   if( area == "sets" ){
  	 var xmlHttp = null;
  	     response = "";
	     
    // Mozilla, Opera, Safari sowie Internet Explorer 7
    if (typeof XMLHttpRequest != 'undefined') {
      xmlHttp = new XMLHttpRequest();
    }
    if (!xmlHttp) {
    // Internet Explorer 6 und älter
    try {
        xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
    } catch(e) {
        try {
            xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
        } catch(e) {
            xmlHttp  = null;
        }
    }
    }
    if (xmlHttp) {
        xmlHttp.open('GET', 'subnavi/'+area+'.html', true);
        xmlHttp.onreadystatechange = function () {
            if (xmlHttp.readyState == 4) {
                document.getElementById("subnavi").innerHTML = xmlHttp.responseText;
                response = xmlHttp.responseText;
            }
        };
        xmlHttp.send(null);
    }
    return response;
   }
   if( area == "kill" ){ document.getElementById("subnavi").innerHTML = ""; }
  }
  
 function loadStartContent(node,  subnode2){
   
    //alert(node + " - " + subnode);
  	 var xmlHttp = null;
  	     response = "";
	     
    // Mozilla, Opera, Safari sowie Internet Explorer 7
    if (typeof XMLHttpRequest != 'undefined') {
      xmlHttp = new XMLHttpRequest();
    }
    if (!xmlHttp) {
    // Internet Explorer 6 und älter
    try {
        xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
    } catch(e) {
        try {
            xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
        } catch(e) {
            xmlHttp  = null;
        }
    }
    }
    if (xmlHttp) {
        xmlHttp.open('GET', 'content/'+node+'/'+subnode2+'.html', true);
        //xmlHttp.open('GET', 'content/about/philosophie.html', true);
        xmlHttp.onreadystatechange = function () {
            if (xmlHttp.readyState == 4) {
                document.getElementById("mainbox").innerHTML = xmlHttp.responseText;
                response = xmlHttp.responseText;
            }
        };
        xmlHttp.send(null);
    }
    return response;
  }
  
 function loadSubContent(node, subnode, subnode2){
   
    //alert(node + " - " + subnode);
  	 var xmlHttp = null;
  	     response = "";
	     
    // Mozilla, Opera, Safari sowie Internet Explorer 7
    if (typeof XMLHttpRequest != 'undefined') {
      xmlHttp = new XMLHttpRequest();
    }
    if (!xmlHttp) {
    // Internet Explorer 6 und älter
    try {
        xmlHttp  = new ActiveXObject("Msxml2.XMLHTTP");
    } catch(e) {
        try {
            xmlHttp  = new ActiveXObject("Microsoft.XMLHTTP");
        } catch(e) {
            xmlHttp  = null;
        }
    }
    }
    if (xmlHttp) {
        xmlHttp.open('GET', 'content/'+node+'/'+subnode+'/'+subnode2+'.html', true);
        //xmlHttp.open('GET', 'content/about/philosophie.html', true);
        xmlHttp.onreadystatechange = function () {
            if (xmlHttp.readyState == 4) {
                document.getElementById("mainbox").innerHTML = xmlHttp.responseText;
                response = xmlHttp.responseText;
            }
        };
        xmlHttp.send(null);
    }
    return response;
  }