/**
 * home.js
 * Die Animation der Homepage
 */

// Page Animation

$(document).ready(
	function() {
		
		// Als erstes alle Links umleiten auf die Funktion changePage
		
		$('a').each(function() {
			var $this = $(this);
			var href = $this.attr('href');
			$this.attr('href', '#');
			$this.click(function() {
				changePage(href);
			});
		});
		
	}
);

function changePage(href) {
	$('#content .center').css('height', $('#content .center').height());
	$('#teaser-03').fadeOut(250, function() {
		$('#teaser-02').fadeOut(250, function() {
            $('#teaser-01').fadeOut(250, function() {
                $('#content .center').hide(750, function() {
                    window.location.href = href;
                });
            });
        });
    });
}

