
/* マップ用イメージチェンジ */
function changeMapImage(url) {
	document.getElementById('mapImage').src = url;
}

/* 時限ニューマーク */
function newUp(y, m, d, c) {
  delDay = 7; // 何日後に削除するか
  oldDay = new Date(y + "/" + m + "/" +d);
  newDay = new Date();
  d =(newDay - oldDay) / (1000 * 24 * 3600);
  if(d <= delDay) {
    if(c == "new") document.write("&nbsp;<img src='images/new.png'>");
  }
}

/* タブ切り替え */
function ShowAll(){
	$('#all').show();
	$('#falco').hide();
	$('#shino').hide();
}
function ShowFalco(){
	$('#all').hide();
	$('#falco').show();
	$('#shino').hide();
}
function ShowShino(){
	$('#all').hide();
	$('#falco').hide();
	$('#shino').show();
}

