/**
 * home.js
 * Die Animation der Homepage
 */

// Page Animation

$(document).ready(
	function() {
		
		// Als erstes alle Links umleiten auf die Funktion changePage
		
		$('#footer a').each(function() {
			var $this = $(this);
			var href = $this.attr('href');
			$this.attr('href', 'javascript:;');
			$this.click(function() {
				changePage(href);
			});
		});
		
		// tabs starten
		
		$('#content .right').tabs({
			
			select: function(event, ui) {
			
				// Blur the focus
				$(ui.tab).blur();
				
			}
			
		});
		
		
	}
);

function changePage(href) {
	$('#content .center').css('height', $('#content .center').height());
	$('#content .center .right').fadeOut(250, function() {
		$('#content .center .left').fadeOut(250, function() {
			$('#content .center').hide(750, function() {
				window.location.href = href;
			});
		});
	});
}
