$(document).ready(function() {
	$('a[@href^="#"]').click(function(){
		$($(this).attr("href")).ScrollTo(200, 'easein');
		return false;
	});
});