$(document).ready(initializeCredits);

function initializeCredits()
{		
	var height = "-" + ($("#credits-photo").height())/2 + "px";

	$("#credits-photo").css("margin-top", height);
	
	$("#credits-show").bind("click", displayCredits);
	
	$("#credits-photo .lineOT a").click(function()
	{
		$("#credits").animate({marginTop : "-100%"}, 500, 'linear');
		return false;
	});
	
	$(".lineOT a").click(function()
	{
		window.location.hash = "#";
	})
}

function displayCredits()
{
	$("#credits").css("display","block");
	
	$("#credits").animate({marginTop : 0}, 500, 'linear');




	var height = "-" + ($("#credits-photo").height())/2 + "px";

	$("#credits-photo").css("margin-top", height);
}
