// Flugzeug
/* Sound beginnt, Flugzeug fliegt und faded aus... nach unten rechts */
$('#de-airplane').click(function(){
	// Bewegen		
	$('#de-airplane').animate({"left": "+=550px","top": "+=150px"}, {queue: false, duration: 2000});
	// Zeitversetzt ausfaden
	$('#de-airplane').animate({"opacity": 1 }, 1000);
	$('#de-airplane').animate(
		{"opacity": 0}, 
		{
			"duration": 1000,
			"complete": function() { top.location.href = $('#de-airplane a:first').attr("href"); }
		}
	);
	return false;
});

// Aktuelle Kollektion
/* Punkt faded langsam ein, Aktuelle Kollektion taucht auf */
$('#de-catalog-outer a:first').hover(
	function() {
		$('#de-catalog-redshine').
			stop().
				css({"opacity": 0, "display": "block"}).
					animate(
						{"opacity": 1}, 
						{
							"duration": 1000,
							"complete": function() { $('#de-catalog-slogan').show(); }
						}
				);
	},
	function() {
		$('#de-catalog-redshine').
			stop().
				fadeOut(
					1000
				);
		$('#de-catalog-slogan').hide();
	}
);

/* Hai schimmt nach rechts und schiff kommt nach links */
$('#de-ntcf a:first').hover(
	function(){
		
		$('#e-ntcf-shark').stop().animate({"left": "170px"},1000);
		$('#e-ntcf-ship').stop().animate({"left": "0px"},1000);
	},
	function(){
		$('#e-ntcf-shark').stop().animate({"left": "0px"},1000);
		$('#e-ntcf-ship').stop().animate({"left": "170px"},1000);
	}
);
	
/* Impressum, Hand verschwindet nach links nach klick und dann erst reload */
$('#de-imprint').click(function(){
	$('#de-imprint a').animate(
		{"left": "-=150px"}, 
		{
			"duration": 2000,
			"complete": function() { top.location.href = $('#de-imprint a:first').attr("href"); }
		}			
	);
	return false;
});

/* Team, nach Mouseover faden langsam die Bullets ein. */
$('#de-team a:first').hover(
	function(){
		$('#de-team-holes').stop().
			css({"opacity": 0, "display": "block"})
			.
			animate(
			{"opacity": 0}, 
			{
				"duration": 700
			}).animate(
			{"opacity": 1}, 
			{
				"duration": 1
			});
	},
	function(){
		$('#de-team-holes').stop().animate(
			{"opacity": 0}, 
			{
				"duration": 1000
			}			
		);
	}
);