// Default Functions

// Scroll To
$(function() {
	$('a.scroll').bind('click',function(event){
		var $anchor = $(this);
		$('html, body').stop().animate({
        scrollTop: $($anchor.attr('href')).offset().top
    }, 1500,'easeInOutExpo');
		event.preventDefault();
	});
});


//Placeholders
Placeholder.init({
	normal : "#464646",
    placeholder : "#505050"
});

// Form
$('#nextButton, #submitButton, #backButton').addClass('fade');


// Features
$(window).scroll(function() {
    if ($(this).scrollTop() < 160) {
        $("#miniLogo").fadeOut('fast');
    }
    else {
		if ($(this).scrollTop() > 160) {
        $("#miniLogo").fadeIn('fast');
		}
    }
});

$(window).ready(function(){
	$('#feature').delay(600).slideDown(1100);
});
