jQuery(function () {
	jQuery('#linkToTop').click(function () {
		jQuery(this).blur();
		jQuery('html,body').animate({ scrollTop: 0 }, 'slow');
		return false;
	});
});

