// Back to top script
jQuery.fn.autohidebacktotop = function() {
	if ($("html, body").height() <= $(window).height()) {
		$("div#autohidebacktotop").hide();
	}
	this.bind("click", function() {
		$("html, body").animate({scrollTop:0}, 300);
		return false;
	});
};
