$(document).ready(function(){

	$("h2.termine").click( function() {
		$("div.TermineAktuelles").css({background: "url(/de/wLayout/design/img/backgrounds/bg-show-aktuelles-info.gif) center no-repeat"});
		$("h2.aktuelles").css({color:"#000"});
		$("h2.termine").css({color: "#000"});
		$("div.aktuelles").hide();
		$("div.info").hide();
		$("div.termine").fadeIn("fast");
	} );
	
	$("h2.aktuelles").click( function() {
		$("div.TermineAktuelles").css({background: "url(/de/wLayout/design/img/backgrounds/bg-show-aktuelles-info.gif) bottom no-repeat"});
		$("h2.termine").css({color: "#000"});
		$("h2.aktuelles").css({color: "#000"});
		$("div.termine").hide();
		$("div.info").hide();
		$("div.aktuelles").fadeIn("fast");
		
	} );
	
	$("h2.info").click( function() {
		$("div.TermineAktuelles").css({background: "url(/de/wLayout/design/img/backgrounds/bg-show-aktuelles-info.gif) top no-repeat"});
		$("h2.termine").css({color: "#000"});
		$("h2.aktuelles").css({color: "#000"});
		$("div.termine").hide();
		$("div.aktuelles").hide();
		$("div.info").fadeIn("fast");
		
	} );
	
	$("div.startberatung").click( function() {
	$("div.startberatung").css({background: "url(/de/wLayout/design/img/startseite/startberatung.jpg) top no-repeat"});
	$("div.energien").css({background: "url(/de/wLayout/design/img/startseite/energien.jpg) bottom no-repeat"} );
	$("div.netzwerk").css({background: "url(/de/wLayout/design/img/startseite/netzwerk.jpg) bottom no-repeat "});
	$("div.block-text2").hide();
	$("div.block-text1").hide();
	$("div.block-text3").fadeIn("fast");
	} );
	
	$("div.energien").click( function() {
	$("div.energien").css({background: "url(/de/wLayout/design/img/startseite/energien.jpg) top no-repeat"} );
	$("div.startberatung").css({background: "url(/de/wLayout/design/img/startseite/startberatung.jpg) bottom no-repeat"});
	$("div.netzwerk").css({background: "url(/de/wLayout/design/img/startseite/netzwerk.jpg) bottom no-repeat "});
	$("div.block-text1").hide();
	$("div.block-text3").hide();
	$("div.block-text2").fadeIn("fast");
	} );
	
	$("div.netzwerk").click( function() {
	$("div.netzwerk").css({background: "url(/de/wLayout/design/img/startseite/netzwerk.jpg) top no-repeat "});
	$("div.energien").css({background: "url(/de/wLayout/design/img/startseite/energien.jpg) bottom no-repeat"} );
	$("div.startberatung").css({background: "url(/de/wLayout/design/img/startseite/startberatung.jpg) bottom no-repeat"});
	$("div.block-text3").hide();
	$("div.block-text2").hide();
	$("div.block-text1").fadeIn("fast");
	} );
	
});