function changeTitle(strHead)
{
	document.title = strHead;
}

$(document).ready( fixCredits );
		
function fixCredits()
{
	$("#creditsLink").hover( crHovIn, crHovOut);
	function crHovIn(e)
	{
		$("#creditsHover").clearQueue().stop(true,true).fadeIn(200);
	}
	
	function crHovOut(e)
	{
		$("#creditsHover").clearQueue().stop(true,true).fadeOut(200);
	}
}

function getPage()
{
	$.post("index.php?async", {op:"viewcatlist"}, crossPages);
	
	function crossPages(d,ts,r)
	{
		$("#mainStage").fadeOut(500, function(){ $("#mainStage").html(d).fadeIn(); } );
	}
}
