$(document).ready(function() {
	$('#Hinweis').hide();

	$('a[rel=external]').attr('target', '_blank');
	
	$('a.Lightbox').lightBox();
	
	$('#Navigation img, ul#Links img, #Impressum').css('opacity', '0.7').hover(function() {
		$(this).css('opacity', '1');
	}, function() {
		$(this).css('opacity', '0.7');
	});
	
	$('div#Startseite div.Box, #Newsticker').css('cursor', 'pointer').hover(function() {
		$(this).animate({opacity: '0.8'});
	}, function() {
		$(this).animate({opacity: '1'});
	});
	
	$('div#Startseite div.Box').click(function() {
		$(this).find('img').fadeOut();
		
		$(this).unbind('mouseenter mouseleave').css('z-index','99').animate({
			width: '1200',
			height: '1200',
			left: '-110',
			top: '-400',
			opacity: '1'
		}, 800, function() {
			var Ziel = $(this).find('a').eq(0).attr('href');
			document.location.href=Ziel;
		});
	});
	
	$('#Newsticker').click(function() {
		var Ziel = $(this).find('a').attr('href');
		document.location.href=Ziel;
	});

	$('.Slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	$('.Rezension').each(function() {
		$(this).find('.Vollversion').hide();

		$(this).find('.Weiterlesen a').click(function() {
			$('.Rezension .Vollversion:visible').slideUp();
			$('.Rezension .Weiterlesen').show();
			
			$(this).parents('.Rezension').find('.Vollversion').slideDown();
			$(this).parents('.Rezension').find('.Weiterlesen').hide();
		
			return false;
		});
	});
});

Position = Versatz = Hoehe = Fenster = 435;

function tourliste_bewegen(Richtung) {
	if(Richtung==1 && Position<0) {
		Position += 5;
		document.getElementById('Tourlisteliste').style.top = Position+'px';
	}
	
	if(Richtung==2 && Position>(0-Hoehe+Fenster+Versatz)) {
		Position -= 5;
		document.getElementById('Tourlisteliste').style.top = Position+'px';
	}
	
	Bewegung = window.setTimeout("tourliste_bewegen('"+Richtung+"')", 35);
}

function tourliste_stoppen() {
	window.clearTimeout(Bewegung);
}
