// 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();
	});
});


// Back to Top Button
$(window).scroll(function() {
    if ($(this).scrollTop() < 800) {
        $(".back-to-top").fadeOut('fast');
    }
    else {
		if ($(this).scrollTop() > 800) {
        $(".back-to-top").fadeIn('slow');
		}
    }
});


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


//Form 
$(window).ready(function(){
	$('#homeForm').delay(400).fadeIn('fast');
});

$(document).ready(function(){
        $('#first, #last, #email, #zip').focus(function() {
                if ($(this).val() == 'First name') $(this).val(" ");
                if ($(this).val() == 'Last name') $(this).val(" ");
                if ($(this).val() == 'Email address') $(this).val(" ");
                if ($(this).val() == 'Zip code') $(this).val(" ");
       	});
});


