function creditsPosition(){
	boxLinkPosition = $('nav_credits');
	boxPosition = $('nav_credits');
	if(boxLinkPosition != null && boxPosition != null){
		linkPosition = $('link_credits');
		if(linkPosition != null){
			linkPosition = getAnchorPosition('link_credits');
			boxPosition.style.top = linkPosition.y - 279 + 'px';
			boxPosition.style.left = linkPosition.x - 190 + 'px';
		}
	}
}
function showCredits(){
	boxLinkPosition = $('link_credits');
	boxPosition = $('nav_credits');
	if (boxLinkPosition != null && boxPosition != null){
		Effect.Appear('nav_credits', { duration: 1.0 });
	}
}
function hideCredits(){
	Effect.Fade('nav_credits', { duration: 1.0 });
}
