jQuery( function($) {
	// hide contact form labels
	$('#contact label').css('display','none');
	
	// scrollTo/localScroll
	$.localScroll.hash({
		target: window,
		queue:true,
		duration:800
	});
	$('header').localScroll({
		target: window,
		queue:true,
		duration:800,
		hash:true
	});
	$('p.more').localScroll({
		target: window,
		queue:true,
		duration:800,
		hash:true
	});
	// when you click a tab, scroll it into sight
	$('#features a').click( function() {
			$.scrollTo( $('#about'), 800 )
		}
	);
	
	// tabbed content
	var tabContainers = $('.tabbed');
	tabContainers.hide();
	tabContainers.filter(':first').show();
	$('#features a').click(function () {
		tabContainers.hide().filter(this.hash).fadeIn();
		
		$('#features a').removeClass('active');
		$(this).addClass('active');
		
		return false;
	}).filter(':first').addClass('active');
	
	// form placholder text
	$('input[placeholder], textarea[placeholder]').placeholder();
	
	// contact form validation
	$("#contact").validate();
});
