IE7 = false;
if (jQuery.browser.msie && jQuery.browser.version == '7.0') {
	IE7 = true;
}
function btn_to_top(){
	if (IE7) {
		jQuery("#site_map_btn").css('bottom', '0px');
	}
	else {
		var offset = jQuery("#bottom").offset();
		jQuery("#site_map_btn").css('bottom', "-"+(jQuery(document).height() - offset.top - 1)+"px");
	}
}
onresize=function() {
	if(!IE6) {
		btn_to_top();
	}
	else {
		jQuery("#site_map_btn").css('bottom', "auto");
		jQuery("#site_map_btn").css('marginTop', "-34px");
	}
}
onload=function() {
	if (IE6) {
		jQuery("#bottom").css('position', 'static');
	}
	else {
		btn_to_top();
	}
	jQuery("#site_map_btn").show();
}