$(document).ready(function() {
	
	/************************************
	* Allgemein							*
	************************************/
		// Title-Attribut in der Navigation löschen (bessere Bedienbarkeit)
		$('#header #navigation ul li a').attr('title', '');
		
	
	/************************************
	* Carousel							*
	************************************/
		// Slide-Effekt für die Angebote
		$('#carousel').cycle({ 
			fx:     'fade',
			timeout:  10000
		});
	
	
	/************************************
	* Standort Info-Wechsel				*
	************************************/
		$('#locations #map ul li a').click(function(){
			/* Daten sammeln */
				// CSS-ID des gehoverten Markers herausfinden. Wird benutzt um den richtigen Infotext einzublenden.
				var cafe = $(this).parents('li').attr('id');
			
			/* Pin ändern */
				// Alle Drop-Pins abgleichen (drop-pin.png)
				$('#locations #map ul li a img').attr('src', 'wp-content/themes/krausseis/images/drop-pin.png');
			
				// Aktuellen Drop-Pin ändern (drop-pin-hover.png)
				$(this).children('img').attr('src', 'wp-content/themes/krausseis/images/drop-pin-hover.png');
			
			/* Infotext ändern */
				// Alle Infotexte zunächst ausblenden
				$('#locations #text .textInfo').css('display', 'none');
			
				// Den Infotext für den oben ermittelten Standort wieder einblenden
				$('#locations #text #info-' + cafe + '').css('display', 'block');
				
			/* Standard-Linkverhalten deaktivieren */
				return false;
		});
	
	
	/************************************
	* Animationen						*
	************************************/
	
	
});
