function creditsPosition(){
	boxLinkPosition = $('nav_credits');
	boxPosition = $('nav_credits');
	if (boxLinkPosition != null && boxPosition != null){
		linkPosition = getAnchorPosition('link_credits');
		boxPosition.style.top = linkPosition.y - 238 + 'px';
		boxPosition.style.left = linkPosition.x + 239 + '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 });
}
