 jQuery(document).ready(function(){
	
	$('a.more').text('...mehr');
	
	$('div.more').css({'background': '#eee'})
	
	$('a.more').click(function() {
		var target = $(this).attr('href');
		$(target).slideToggle('1000');
		
		if ($(this).text() === '...mehr') {
			$(this).text('...weniger');
		} else {
			$(this).text('...mehr');
		}
		
	})

	$('a.thickbox').hover(
		function() {
			$(this).append('<div id="cursor"><img src="/chrome/lupe.gif" /></div>');
			$('#cursor').css({'position': 'absolute', 'top': '-1em', 'left': '0.5em'})
		},
		function() {
			$('#cursor').remove();
		});

	$('#top').css({'margin-top': '25%'})
	$('body').append($('#prolog'));
	
	$('#prolog').css({
				'color': '#fff','background-color': '#c03',
				'position': 'absolute', 'top': 0, 'left': 0, 'width': '100%', 'height': '100%', 'z-index': '1000',
				'text-align': 'center', 'font-size': '150%'})
			.animate({'opacity': 0.999}, 1700)
			.animate({'opacity': 0}, 2500, function() {
				$('#prolog').hide();
			});
			
	$("#map").click(function() {
		_gaq.push(['_trackEvent', 'Map', 'Click', 'Interaktion mit Karte']);
	});
	$("#email_link").click(function() {
		_gaq.push(['_trackEvent', 'Email', 'Click', 'Kontakt via Emaillink']);
	});
	$("li.facebook .fb_like").click(function() {
		_gaq.push(['_trackSocial', 'facebook', 'activate', document.location]);

	});

 });


