jQuery(function () {
	// set footer "more" link scroll page to top 
	jQuery('#footer_top').click(function(){
		jQuery('html, body').animate({scrollTop:0}, 'slow');
		return false;
	});
	
});