// JavaScript Document

/***********************************************
***  ANIMATED SCROLLING   **********************
************************************************/

$(document).ready(function(){
		$('.formError a[href^="#"]').click(function(){											
				var id = $(this).attr('href');
				if(id.length === 1) return;
				var ele = $(id);
				if(ele.length) {
					var destination = ele.offset().top;
					$('html:not(:animated), body:not(:animated)').animate({
							scrollTop: destination -20
						},500, 'easeOutQuint');
				}
			});
		
 });
