$(document).ready(function(){

window.onload = function()
{
	$("#actor_pic").fadeTo(2000, 1.0); 
}
						   $(".actor2").fadeTo(10, 0.0); 
						   $(".actor2").hover(function(){
						   $(this).fadeTo("slow", 1.0); 
						   },function(){
						   $(this).fadeTo("slow", 0.0); 
						   });

						   $(".actor_windows a").hover(function(){
						   $('#info_bar').html(this.title);
						   },function(){
						   $('#info_bar').html('');
						   });

					   $("#go1").click(function(){
					   $("#index_bubble_1").hide();
				           $("#index_bubble_2").show();
					   });

					   $("#go2").click(function(){
					   $("#index_bubble_2").hide();
				           $("#index_bubble_3").show();
					   });

					   $("#go3").click(function(){
					   $("#index_bubble_3").hide();
				           $("#index_bubble_4").show();
					   });

					   $("#go4").click(function(){
					   $("#index_bubble_4").hide();
				           $("#index_bubble_5").show();
					   });

					   $("#go5").click(function(){
					   $("#index_bubble_5").hide();
				           $("#index_bubble_6").show();
					   });

					   $("#go6").click(function(){
					   $("#index_bubble_6").hide();
				           $("#index_bubble_7").show();
					   });

					   $("#go7").click(function(){
					   $("#index_bubble_7").hide();
				           $("#index_bubble_8").show();
					   });

					   $("#go0").click(function(){
					   $("#index_bubble_8").hide();
				           $("#index_bubble_1").show();
					   });





	});
	




