
$(document).ready(function() {
						   
/*	$("#stoerer").animate({left: 70}, 1000, function() {
		$('#impressum').fadeOut('fast');
		$('#karte_on').fadeOut('fast');
		$('#stellen_on').fadeOut('fast');
		$('#stoerer_off').fadeIn('fast');
		$("#stoerer_off").click(function() {
			$('#stellen_on').fadeIn('fast');
			$('#stoerer_off').fadeOut('fast');
			$('#stoerer').fadeOut('fast');
			$('#impressum').fadeIn('fast');
			$('#karte_on').fadeIn('fast');
			});
		});						   
*/						   
	$("#karte_on").click(function() {
		$('#karte').fadeIn('slow');
		$('#karte_on').fadeOut('fast');
		})

	$(".local").hover(function() {
		$(this).find('img').eq(0).fadeIn('fast');
		x = $(this).attr('id');
		y = x.replace('kart_','text_');
		$('#'+y).fadeIn('slow');
		}, function () {
		$(this).find('img').eq(0).fadeOut('fast');
		x = $(this).attr('id');
		y = x.replace('kart_','text_');
		$('#'+y).fadeOut('slow');
		})

	$("#impressum").click(function() {
		$('#karte').fadeOut('fast');
		$('#gruener_balken').fadeOut('fast');
		$('#impressum').fadeOut('fast');
		$('.text').fadeOut('fast');
		$('#home').fadeIn('fast');
		$('#impressum_text1').fadeIn('fast');
		$('#impressum_text2').fadeIn('fast');
		$('#stellen_on').fadeOut('fast');
		})
	$("#home").click(function() {
		$('#home').fadeOut('fast');
		$('#impressum_text1').fadeOut('fast');
		$('#impressum_text2').fadeOut('fast');
		$('#gruener_balken').fadeIn('fast');
		$('#impressum').fadeIn('fast');
		$('#text_1').fadeIn('fast');
		$('#karte_on').fadeIn('fast');
		$('#stellen_on').fadeIn('fast');
		})
	$("#stellen_on").click(function() {
		$('#stellen_on').fadeOut('fast');
		$('#stellen_off').fadeIn('fast');
		$('#stellenangebote').fadeIn('fast');
		$('#impressum').fadeOut('fast');
		$('#stelle_1').css({'z-index' : '1000'});
		$('#stelle_2').css({'z-index' : '1000'});
		$('#stelle_3').css({'z-index' : '1000'});
		});
	$("#stellen_off").click(function() {
		$('#stellen_on').fadeIn('fast');
		$('#stellen_off').fadeOut('fast');
		$('#stellenangebote').fadeOut('fast');
		$('#impressum').fadeIn('fast');
		});
	$("#stelle_1").click(function() {
		$('#stelle_1').css({'z-index' : '3000'});
		$('#stelle_2').css({'z-index' : '1000'});
		$('#stelle_3').css({'z-index' : '1000'});
		$('#stelle_4').css({'z-index' : '1000'});
		})
	$("#stelle_2").click(function() {
		$('#stelle_1').css({'z-index' : '1000'});
		$('#stelle_2').css({'z-index' : '3000'});
		$('#stelle_3').css({'z-index' : '1000'});
		$('#stelle_4').css({'z-index' : '1000'});
		})
	$("#stelle_3").click(function() {
		$('#stelle_1').css({'z-index' : '1000'});
		$('#stelle_2').css({'z-index' : '1000'});
		$('#stelle_3').css({'z-index' : '3000'});
		$('#stelle_4').css({'z-index' : '1000'});
		})
	$("#stelle_4").click(function() {
		$('#stelle_1').css({'z-index' : '1000'});
		$('#stelle_2').css({'z-index' : '1000'});
		$('#stelle_3').css({'z-index' : '1000'});
		$('#stelle_4').css({'z-index' : '3000'});
		})

});	


