$(document).ready(function () {

	$('nav a').click(function (e) {
		e.preventDefault();
		$.scrollTo($(this).attr('href'), 800);
	});

    $('#howToSignUp').click(function (e) {
		e.preventDefault();
		$.scrollTo($(this).attr('href'), 800);
	});

	if ($('nav').length) {
		var menu = $('nav'),
	    pos = menu.offset();

		$(window).scroll(function () {
			if ($(this).scrollTop() > pos.top + menu.height() && menu.hasClass('default')) {
				menu.fadeOut('fast', function () {
					$(this).prependTo('body').removeClass('default').addClass('fixed').fadeIn('fast');
				});
			} else if ($(this).scrollTop() <= pos.top && menu.hasClass('fixed')) {
				menu.fadeOut('fast', function () {
					$(this).appendTo('#header').removeClass('fixed').addClass('default').fadeIn('fast');
				});
			}
		});
	}

	$('ul.tabs').tabs('div.tab', {
		effect: 'fade'
	});

});
