$(function(){
	
	$("#contents > div").hide();
	$("#top").show();
	
	//
	var tabIndex = $("#contents > div");
	var tabNum = $(tabIndex).length-1;
	//
	$(".top > a , .freecd > a , .tokyo > a , .nagoya > a , .osaka > a").click(function() {
		var targetID = $(this).attr("href");
		$("#menu > li > a").css("visibility","visible")
		$(this).css("visibility","hidden")
		for (i=0; i<=tabNum; i++) {
			$(tabIndex[i]).hide();
		}
		$(targetID).fadeIn("slow");
		return false;
	});
});
