$(document).ready(function() {
	/** Mainnav Hover **/	
	$('.fadeThis').append('<span class="hover"></span>').each(function () {
	  var $span = $('> span.hover', this).css('opacity', 0);
	  $(this).hover(function () {
	    $span.stop().fadeTo(600, 1);
	  }, function () {
	    $span.stop().fadeTo(300, 0);
	  });
	});

	 // font color animation subnav
	$(".wr a").stop().hover(function() {
		 $(this).stop().animate({ color: "#9e1616" }, 700);
		 }, function() {
		 $(this).stop().animate({ color: "#ffffff" }, 300);
	 });

	$(".blink").blink();


	// font color animation text_link
	$(".text_link a").stop().hover(function() {
		 $(this).stop().animate({ color: "#333333" }, 1000);
		 }, function() {
		 $(this).stop().animate({ color: "#9e1616" }, 500);
	 });
	
	// Slideshow starten
	$(document).ready(function(){
		$("#slideshow2").slideshow({
			pauseSeconds: 2,
			height: 388,
			width:196,
			caption: true
		});
		$("#slideshow2").show();
	});

 });
