$(document).ready(function(){
	$("#fnc-first ul.right_actors_cnt a").click(function(){
		var actor = $(this).attr('name');
		$("#fnc-first .right_actors_all").fadeOut("fast", function(){
			$("#"+actor).fadeIn();
		});
		return false;
	});
	
	$("#fnc-first a.actor_close").click(function(){
		$(this).parents("#fnc-first div.right_actors_detail_cnt").fadeOut("fast", function(){
			$("#fnc-first .right_actors_all").fadeIn();
		});
		return false;
	});
	
	// second box
	$("#fnc-second ul.right_actors_cnt a").click(function(){
		var actor = $(this).attr('name');
		$("#fnc-second .right_actors_all").fadeOut("fast", function(){
			$("#"+actor).fadeIn();
		});
		return false;
	});
	
	$("#fnc-second a.actor_close").click(function(){
		$(this).parents("#fnc-second div.right_actors_detail_cnt").fadeOut("fast", function(){
			$("#fnc-second .right_actors_all").fadeIn();
		});
		return false;
	});
});