$(document).ready(function(){
	$("#btn-approach").bind("click", function(e){
		e.preventDefault();
		e.stopPropagation();
		var anchorPos = $($(this).attr("href")).offset().top;
		$('html,body').animate({
			scrollTop: anchorPos
			}, 500);
	});
	$('input[type="text"]').focus(function() {
			if (this.value == this.defaultValue){
				this.value = '';
			}
			if(this.value != this.defaultValue){
				this.select();
			}
		});
		$('input[type="text"]').blur(function() {
			if (this.value == ''){
				this.value = (this.defaultValue ? this.defaultValue : '');
			}
		});
});
