$(document).ready(function(){
	cast('cast1');
	
	function cast(x) {
		$('#internalTitle').hide();
		$('#internalPhoto').hide();
		$('#content-castCrewHolder').hide();
		
		$.get("castCrewInfo.php", {photo: x},
			function(response) {
				$('#internalPhoto').html(response);
				$('#internalPhoto').fadeIn();
			}
		);
		
		$.get("castCrewInfo.php", {title: x},
			function(response) {
				$('#internalTitle').html(response);
				$('#internalTitle').fadeIn();
			}
		);
		
		$.get("castCrewInfo.php", {content: x},
			function(response) {
				
				$('#content-castCrewHolder').html(response);
				$('#content-castCrewHolder').fadeIn();
				$('#content-castCrewHolder').jScrollPane({scrollbarWidth:8, scrollbarMargin:10});
				$('#content-castCrewHolder')[0].scrollTo(0);
			}
		);
	}
	
	$(".castImage").click(function() {
		var x = $(this).attr("id");
		cast(x);
	});
	
});