$(document).ready(function() {
	if(location.hash && location.hash !== '#' && $(location.hash).length) {
		var hash = location.hash;
		location.hash = '';
		$.scrollTo(hash, 'slow');
	}
	$('a[href*="#"]').click(function() {
		$(this).blur();
		var href = $(this).attr('href');
		href = href.substring(href.indexOf('#'));
		if($(href).index() >= 0) {
			$.scrollTo(href, 'slow');
			return false;
		}
	});
});
