<!--

function getCookie(name,defaultValue) {
  var s=document.cookie;
  var a=s.indexOf(name+"=");
  if(a>=0) {
    s=s.substr(a)+";";
    return unescape(s.substring(name.length+1,s.indexOf(";")));

  } else {
    if(defaultValue!=null) {
      setCookie(name,defaultValue);
      return defaultValue;

    } else return null;
  }
}
function setCookie(name,value,expires,path,domain,secure) {
  var s=name+"="+escape(value)+";";
  if(expires!=null) {
    var later=new Date();
    later.setTime(later.getTime()+(expires*1000));
    s+=" expires="+later.toGMTString()+";";
  }
  document.cookie=s+((path!=null) ? " path="+path+";" : "")
  +((domain!=null) ? " domain="+domain+";" : "")
  +((secure!=null) ? " secure;" : "");
  return true;
}

hauptwert = getCookie("haupt"); 
shopwert = getCookie("shop"); 

if(hauptwert == null)
{
	hauptwert = "2";
} 
if(shopwert == null)
{
	shopwert = "2";
} 

//alert("\nHAUPTWERT: "+hauptwert+" SHOPWERT: "+shopwert+".");

if(hauptwert == "1" && shopwert == "1")
{
	window.onload = function() {
  		ausblenden_haupt();
		ausblenden_shop();
	}
}
if(hauptwert == "2" && shopwert == "2")
{
	window.onload = function() {
  		einblenden_haupt();
		einblenden_shop();
	}
}
if(hauptwert == "1" && shopwert == "2")
{
	window.onload = function() {
  		ausblenden_haupt();
		einblenden_shop();
	}
}
if(hauptwert == "2" && shopwert == "1")
{
	window.onload = function() {
  		einblenden_haupt();
		ausblenden_shop();
	}
}


function ausblenden_haupt() { 
	with(document.getElementById('hauptmenue').style){ 
		display="none";
	}
	with(document.getElementById('hauptmenue2').style){ 
		display="block";
	}
	with(document.getElementById('hauptkopf').style){ 
		display="none";
	}
	with(document.getElementById('hauptkopf2').style){ 
		display="block";
	}
	//document.cookie = "haupt=1;";
	void setCookie("haupt", "1");
} 
function einblenden_haupt() { 
	with(document.getElementById('hauptmenue').style){ 
		display="block";
	}
	with(document.getElementById('hauptmenue2').style){ 
		display="none";
	}
	with(document.getElementById('hauptkopf').style){ 
		display="block";
	}
	with(document.getElementById('hauptkopf2').style){ 
		display="none";
	}
	 <!--cookie setzen
	void setCookie ("haupt", "2"); 
	 //-->
}
function ausblenden_shop() { 
	with(document.getElementById('shopmenue').style){ 
		display="none";
	}
	with(document.getElementById('shopmenue2').style){ 
		display="block";
	}
	with(document.getElementById('shopkopf').style){ 
		display="none";
	}
	with(document.getElementById('shopkopf2').style){ 
		display="block";
	}
	void setCookie ("shop", "1"); 
} 
function einblenden_shop() { 
	with(document.getElementById('shopmenue').style){ 
		display="block";
	}
	with(document.getElementById('shopmenue2').style){ 
		display="none";
	}
	with(document.getElementById('shopkopf').style){ 
		display="block";
	}
	with(document.getElementById('shopkopf2').style){ 
		display="none";
	}
	void setCookie ("shop", "2");
} 
//--> 
