/*スパム対策*/
<!--
function vspam(im,domain) {
  maddress = "mailto:" + im + "@" + domain;
  window.location.href = maddress;
}
// -->

$(function(){
	$("a.btn img, #close a img").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("slow", 1.0);
	});
});


$(document).ready(function() {
	$("#thumb a").each(function(){
		$(this).click(function(){
			tabeId = $(this).attr('id');
			$("#thumb a").removeClass("live");
			$("#backNum").addClass("hide");
			$(this).addClass("live");
			$(".staff").addClass("hide");
			$("#"+tabeId+"-1").removeClass("hide"); 
			return false;
		});
	});  
});

function showBack(){
	$("#backNum").removeClass("hide"); 
	$("#staff00-1").addClass("hide");
}

function hideBack(){
	$("#backNum").addClass("hide");
	$("#staff00-1").removeClass("hide");
}
