$(document).ready(function(){
	
	$(".teaserDesc").each( function() {
		
		$(this).animate({opacity: "0.8"},1);
		
	});

	$("#teaserList a").hover( function() {
		
		$(this).addClass("tHover");
		
	}, function() {
		
		$(this).removeClass("tHover");
		
	});
	
	
	$("a.fancyPic").fancybox({
		'hideOnContentClick': false
	});
	
	$('#journeyFailed').animate({left: '460px'}, 1500, 'easeOutBounce');

});


