var visiblePage = 'start';
$(document).ready(function() {
	$("body").fadeIn(700);
	$("#mu").click( function () { togglePage('start'); } );
	$("#twitter").click( function () { togglePage('twitter'); } );
	$("#phone").click( function () { togglePage('phone'); } );
	$("#mail").click( function () { togglePage('mail'); } );
	jQuery("body *").tooltip({
		track: true, 
		delay: 0, 
		showURL: false, 
		fade: 250 
	});
});

function togglePage(page) {
	if(visiblePage != '') {
		$("#" + visiblePage + "content").fadeOut(700);
	}
	showContent(page);
}

function showContent(page) {
	if(visiblePage != '') {
		$("#" + visiblePage + "content").hide();
	}
	$("#" + page + "content").fadeIn(700);
	visiblePage = page;
}

