// 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 SendFormular() {	
	$(".powermail_submit_uid12").trigger('click');	
}

// 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();

}

$(window).load(function() {
	
	var form = $('.tx-powermail-pi1 form');
	
	if(form.length > 0){
		var form_action = form.attr('action');
		if(form_action.match('/\?/')){
			form_action = form_action + '&contactform=1';
		} else {
			form_action = form_action + '?contactform=1';
		}
		form.attr('action',form_action);		
	} else {
		$('.jsnavi a#senden').hide();
	}
	
	if(window.location.href.match('contactform=1')){
		showContactFormDiv();
	}
	  
	var cp = new ContentPager('#MultipageContent','#previouspage','#nextpage');
	cp.init();

})


