$j(document).ready(function() { 
$j("#tabs .texte").click(
	function() {
		$j("#contentContainer").animate({borderLeftColor: '#df0028',borderRightColor: '#df0028'}, 1000); 
		$j("#header a").animate({color: '#df0028'}, 1000); 
		$j("#bildleiste span").animate({color: '#df0028'}, 1000); 
		$j("#content").css('background-image','url("images/linie.png")')
		$j(".kreis").get(0).src="images/kreis.png"
		$j("#content #text").html($j("#text_texte").html());
		$j("#leftnavi").load("include/leftnavi_texte.php",	function(){});
		$j("#rightText").load("include/righttext_texte.php",	function(){});
		$j("#logo img").attr("src","images/logo.gif");
	});
$j("#tabs .schule").click(
	function() {
		$j("#contentContainer").animate({borderLeftColor: '#3d7e2c',borderRightColor: '#3d7e2c'}, 1000); 
		$j("#header a").animate({color: '#3d7e2c'}, 1000); 
		$j("#bildleiste span").animate({color: '#3d7e2c'}, 1000); 
		$j("#content").css('background-image','url("images/linie_gruen.png")')
		$j(".kreis").get(0).src="images/kreis_gruen.png"
		$j("#content #text").html($j("#text_schule").html());
		$j("#leftnavi").load("include/leftnavi_schule.php",	function(){});
		$j("#rightText").load("include/righttext_schule.php",	function(){});
		$j("#logo img").attr("src","images/logo_schule.jpg");
	});
$j("#tabs .werbung").click(
	function() {
		$j("#contentContainer").animate({borderLeftColor: '#0177be',borderRightColor: '#0177be'}, 1000); 
		$j("#header a").animate({color: '#0177be'}, 1000); 
		$j("#bildleiste span").animate({color: '#0177be'}, 1000); 
		$j("#content").css('background-image','url("images/linie_blau.png")');
		$j(".kreis").get(0).src="images/kreis_blau.png";
		$j("#content #text").html($j("#text_werbung").html());
		$j("#leftnavi").load("include/leftnavi_werbung.php",	function(){});
		$j("#rightText").load("include/righttext_werbung.php",	function(){});
		$j("#logo img").attr("src","images/logo.gif");
	});
});







