$(document).ready(function($){
	$("#rightTop #topPage01").hide();
	$("#rightTop #topPage02").hide();
	$("#rightTop #topPage03").hide();
	$("#rightTop #topPage04").hide();
	$("#rightTop #topPage05").hide();
	$("#rightTop #topPage06").hide();
	$("#rightTop #topPage07").hide();
	$("#rightTop #topPage08").hide();
	$("#rightTop #topPage00").show();
	$("#topPage02 #subPage02").hide();
	$(".tabul a").click(function(){
		$(".tabul a").removeClass("selected");
		$(this).addClass("selected");
		$("#rightTop #topPage00").hide();
		$("#rightTop #topPage01").hide();
		$("#rightTop #topPage02").hide();
		$("#rightTop #topPage03").hide();
		$("#rightTop #topPage04").hide();
		$("#rightTop #topPage05").hide();
		$("#rightTop #topPage06").hide();
		$("#rightTop #topPage07").hide();
		$("#rightTop #topPage08").hide();
		$($(this).attr("href")).show();
		return false;
	});
	$(".menuShinryo a").click(function(){
		$(".menuShinryo a").removeClass("selected");
		$(this).addClass("selected");
		$("#topPage02 #subPage01").hide();
		$("#topPage02 #subPage02").hide();
		$($(this).attr("href")).show();
		return false;
	});
	
	$(".mainTopIndexIn").addClass("search_loading");
	$.ajax({
		url: "movie/summary", 
		type: "GET", 
		success: function(data, type) {
			$(".mainTopIndexIn").removeClass("search_loading");
			$("#movie_summary").get(0).innerHTML = data;
			Mediabox.scanPage();
		}, 
		error: function(e) {
			$(".mainTopIndexIn").removeClass("search_loading");
		}
	});

});

$(document).ready(function($) {
    $('#slideshow').cycle({
		fx: 'fade', 
		timeout: 10000, 
		speed: 2000
	});
});

