maptgStr = 'map_def';
function Map_Show(mapjsStr) {
	if(document.getElementById(maptgStr)){
		document.getElementById(maptgStr).style.display = 'none';
	}
	if(document.getElementById(mapjsStr).style.display == 'none'){
		document.getElementById(mapjsStr).style.display = 'block';
		maptgStr = mapjsStr;
	}
}

tgStr = 'tan_comment_tan1';
function Ma_Show(jsStr) {
	if(document.getElementById(tgStr)){
		document.getElementById(tgStr).style.display = 'none';
	}
	if(document.getElementById(jsStr).style.display == 'none'){
		document.getElementById(jsStr).style.display = 'block';
		tgStr = jsStr;
	}
}


$(function(){
	//====== ƒtƒFƒCƒh ======//
	$(".fade").load(function(){
		$(this).fadeTo(200, 1.0);
	});
	$(".fade").hover(
		function(){
			$(this).fadeTo(200, 0.7);
		},
		function(){
			$(this).fadeTo(200, 1.0);
		}
	);
});

