function scrollToBottom() {
	$("html, body").animate({scrollTop: $(document).height() - $(window).height()}, "slow");
}

$(function() {
	$("a.emailfriend").click(function () {
		$("#emailfriend").toggle().siblings("div[id]").hide();
		scrollToBottom();
		return false;
	});
	
	$("a.feedback").click(function () {
		$("#feedback").toggle().siblings("div[id]").hide();
		scrollToBottom();
		return false;
	});
});

