// サイトマップのフッターのスライド
jQuery(function($) {
	var slide = false;
	var height = $('#hfoot').height();
	$('#btn_sitemap').click(function() {
		var docHeight = $(document).height();
		var windowHeight = $(window).height();
		var scrollPos = docHeight - windowHeight + height;
		$('#hfoot').animate({ height: "toggle"}, 200, "linear");
		if(slide == false) {
			if($.browser.opera) {
				$('html').animate({scrollTop: scrollPos+'px'}, 200, "linear");
			} else {
				$('html, body').animate({scrollTop: scrollPos+'px'}, 200, "linear");
			}
			slide = true;
		} else {
			slide = false;
		}
	});
});
