/*globals $:true document: true */

$(document).ready(function () {
	$('a[href="/#contact"]').click(function(e){
		e.preventDefault();
		e.stopPropagation();
    $('body').scrollTo($('.contact'),500);
  });

	$('header select').change(function(e){
		e.preventDefault();
		e.stopPropagation();
		document.location = e.target.value;
  });
});

