$(document).ready(function()
{	

	$('#header-back').cycle({
		fx: 	'fade',
		speed:  '3500',
		timeout: '9000' 
	});
	
	$('#header-image-cycle').cycle({
		fx:     'scrollLeft',
		speed:  '3500',
		timeout: '9000',
		cleartype:  true,
	    cleartypeNoBg:  true
	});
	
	$('#navigation li').hover(
		function() {
			$(this).addClass("hover");
		},
		function() {
			$(this).removeClass("hover");
		}
	);
	
	$('blockquote > p:nth-child(1)').addClass('first-child');
	
	$('ul.buttons').hide();
	
	$('div.has-buttons').hover(
		function() {
			$(this).find('ul.buttons').fadeIn();
		},
		function() {
			$(this).find('ul.buttons').fadeOut();
		}
	);
	
	$(".map-point").hide();
	$("#start").show();
	
	$("#referenzen a").click(
		function() {
			var rel = $(this).attr('rel');

			$('.map-point').hide();
			$("#"+rel).show();
		}
	);
	
}
);
