function init() {
	
	$(".fade").animate({"opacity":"1"},750);
	
	$("#loading").fadeOut();

}
	
function reinitialiseScrollPane() {
	$('.scroll-pane').jScrollPane();
}
	



	$(".play").live('click', function() {
		document.vid1.Play();
		$('.play').animate({"opacity":"0"},500);
	});
	
	$(".vid").live('click', function() {
		$('.play').animate({"opacity":"1"},500);
  	document.vid1.Stop();
	});
	
	var count = 0;
	
	$("#more").live('click', function() {
		
		$('#prev').show();
		
		if (count < 2){ 
			count++;
			if (count==2)$(this).hide();
			$('#thumb-box').animate({"left":"-=320px"},500);
			}
		
		
	});
	
	$("#prev").live('click', function() {
		
		$('#more').show();
		
		if (count > 0){ 
			count--;
			if (count==0)$(this).hide();
			$('#thumb-box').animate({"left":"+=320px"},500);
			}
		
		
	});
	
$(".photos a").live('click', function(){
		
		var photoUrl = $(this).attr("photo");
		
		$("#left-box span").html('<center><div class="gallery-photo"><img src="'+photoUrl+'" /></div></center><a href="#" id="back-crew"><img style="position:absolute;left:20px;bottom:20px" src="images/return-crew.png" /></a>');
		
});
	
$("#back-crew").live('click', function(){
	
	
	$("#left-box span").html('<img src="images/crew.png" id="left-title" /><div class="crew first"><a href="#" onclick="addToLeft(this.name)" class="bio" name="guinan"><img src="images/dave_headshot.png" /></a><b>DAVID GUINAN</b><p><br />PRODUCER AND DIRECTOR</p></div><div class="crew"><a href="#" onclick="addToLeft(this.name)" class="bio" name="pluth"><img src="images/pluth_headshot.png" /></a><b>DAVID PLUTH</b><p><br />DIRECTOR OF PHOTOGRAPHY</p></div><div class="crew"><a href="#" onclick="addToLeft(this.name)" class="bio" name="matt"><img src="images/matt_headshot.png" /></a><b>MATTHEW NAUSER</b><p>ADDITIONAL CAMERA</p></div><div class="crew"><a href="#" onclick="addToLeft(this.name)" class="bio" name="collin"><img src="images/collin_headshot.png" /></a><b>COLLIN KORNFEIND</b><p>EDITOR</p></div>');
});
	


function addToLeft(str)
		{
		if (str=="")
		  {
		  document.getElementById("left-box").innerHTML="";
		  return;
		  } 
		if (window.XMLHttpRequest)
		  {// code for IE7+, Firefox, Chrome, Opera, Safari
		  xmlhttp=new XMLHttpRequest();
		  }
		else
		  {// code for IE6, IE5
		  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		  }
		xmlhttp.onreadystatechange=function()
		  {
		  if (xmlhttp.readyState==4 && xmlhttp.status==200)
		    {
		    document.getElementById("left-box").innerHTML=xmlhttp.responseText;
		    init();
				reinitialiseScrollPane();
		    }
		  }
	      
		xmlhttp.open("GET","includes/crew.php?q="+str,true);
	       
		xmlhttp.send();
		
		}
