// overwrites the same method in script.js

SiteExplorer.getContent = function() {

	return '<ul>'
		+'	<li><span class="active">Home</span></li>'
		+'	<li><a href="bausteine.htm" class="page">our key factors - your success</a></li>'
		+'	<li><a href="auf_einen_blick.htm" class="page">Loher at the glance</a></li>'
		+'	<li><a href="philosophie.htm" class="page">Our philosophy</a></li>'
		+'	<li><a href="historie.htm" class="page">History / Loher since 1895</a></li>'
		+'	<li><a href="human_resources.htm" class="page">Human Resources - Joining Loher</a></li>'
		+'	<li><a href="so_finden_sie_uns.htm" class="page">Find us / Maps </a></li>'
		+'	<li><a href="aktuelles.htm" class="page">News</a></li>'
		+'	<li><a href="unternehmensgrundsaetze.htm" class="page">Corporate Policy</a></li>'
		+'	<li class="active"><a href="service.htm" class="page">Service</a></li>'
		+'	<li></li>'
		+'	<li><a href="http://www.automation.siemens.com/mcms/large-drives/en/motors/low-voltage-motors/loher-motors/Pages/loher.aspx" target="_blank" class="link2">Low-voltage motors</a></li>'
		+'	<li><a href="http://www.automation.siemens.com/mcms/large-drives/en/motors/high-voltage-motors/loher-motors/Pages/loher.aspx" target="_blank" class="link2">High-voltage motors</a></li>'
		+'	<li><a href="http://www.siemens.com/dynavert" target="_blank" class="link2">Frequency converters</a></li>'
		+'</ul>'
	;
}

SiteExplorer.expandSubtree = function(linkNode) {
	linkNode.addClassName("expanded");
	linkNode.up().removeClassName("collapsed");
	linkNode.up().addClassName("expanded");
	SiteExplorer.layer.afterOpen();
}

SiteExplorer.collapseSubtree = function(linkNode) {
	linkNode.removeClassName("expanded");
	linkNode.up().addClassName("collapsed");
	linkNode.up().removeClassName("expanded");
	SiteExplorer.layer.afterOpen();
}

// <li class="active"><span class="active">
