$(document).ready(function() {
  	// This is for scrollTO.js
  	$(".scroll").click(function (e) {
	   var href = $(this).attr('href').substr(1);
	   $.scrollTo("[id='" + href + "'],[name='" + href + "']", 800);
	   e.preventDefault();
	}); 
});
