$(document).ready(function() {	$('#tabs').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });			$('.home').click(function() {		$('#tabs').tabs('select', 0); // switch to first tab		return false;	});	$('.angebot').click(function() {		$('#tabs').tabs('select', 1); // switch to second tab		return false;	});	$('.newstab').click(function() {		$('#tabs').tabs('select', 5); // switch to sixth tab		return false;	});	$('#1').click(function() {		$("#footer").animate({opacity: "0", height: "0"}, 0)		.text('personal und mental training')		.animate({opacity: "1", height: "40"}, 1200)		return false;		});			$('#2,#3').click(function() {		$("#footer").animate({opacity: "0", height: "0"}, 0)		.text('good morning')		.animate({opacity: "1", height: "40"}, 1200)		return false;		});		$('#4').click(function() {		$("#footer").animate({opacity: "0", height: "0"}, 0)		.text('immer in bewegung')		.animate({opacity: "1", height: "40"}, 1200)		return false;		});				$("#5").click(function(){			$("#footer").animate({opacity: "0", height: "0"}, 0)		.text('noch fragen?')		.animate({opacity: "1", height: "40"}, 2400)		return false;		});			$("#6,.newstab").click(function(){			$("#footer").animate({opacity: "0", height: "0"}, 0)		.text('')		.animate({opacity: "1", height: "0"}, 2400)		return false;		});	$("#content a[alt]").qtip({		style: { width: 500, padding: 10, paddingBottom: 20, background: '#FB785A', fontWeight: 700, color: '#000000',		textAlign: 'left',border: { width: 7, radius: 0, color: '#FB785A' }, tip: true, name: 'dark' },		position: { target: 'mouse', adjust: { screen: true } },		corner: { tooltip: 'topMiddle' }	});});
