
// Smooth scroll "back to top"
jQuery(document).ready(function($) {
	$('a.link2top').click(function () {
		$('html').animate({scrollTop:0}, 'slow');
		return false;
	});
});
