// JavaScript Document

//Trackingcenter
tc = new Image(0,1);
tc.src ="http://www.trackingcenter.de/statistic.php?id=1390&screenwidth="+screen.width+"&screenheight="+screen.height+"&colordepth="+screen.colorDepth+"&referrer="+escape(document.referrer)+"&url="+escape(document.URL);
	

// Blendet alles bis auf die Menüseite aus
function showContactMenuDiv() {	
	$("contactmenu").show();	
	$("contactform").hide();
	$("contacts").hide();
}

// Blendet alles bis auf die Kontaktformularseite aus
function showContactFormDiv() {
	$("contactform").show();
	$("contacts").hide();
}

// Blendet alles bis auf die Ansprechpartnerseite aus
function showContactsDiv() {
	$("contactform").hide();
	$("contacts").show();
}

// Blendet alles wieder aus
function closeContactMenuDiv() {
	$("contactmenu").hide();	
	$("contactform").hide();
	$("contacts").hide();

}

Event.observe(window, 'load', function() {
	if(window.location.search.match('contactform=1'))
	  showContactFormDiv();
	
	var cp = new ContentPager('MultipageContent','previouspage','nextpage');
	cp.init();



})

