// JavaScript Document

//engage on the page load
$(function() {
  //trigger ajax on submit
  
  $('#form1').submit( function(){

  //hide the form
  $('#form1').hide();

  //show the loading bar
  $('.loader').append($('.bar'));
  $('.bar').css({display:'block'});

  //stay on the page
  return false;
  });

  /* This code is executed after the DOM has been completely loaded */
	
	$('a.scroll, a#logo').click(function(e){
										  
		// If a link has been clicked, scroll the page to the link's hash target:
		
		$.scrollTo( this.hash || 0, 1000);
		e.preventDefault();
	});

});


