
function setContentPosition()
{
	var windowHeight = $(window).height();
	var contentHeight = $('#wrapper').height();
	if(contentHeight >= windowHeight)
	{
		if($('#wrapper').css('display') == "none")
			$('#wrapper').fadeIn("slow");
		return;
	}
	$('#wrapper').css('margin-top', (windowHeight - contentHeight) / 2);
}

function replaceFonts()
{
	Cufon.replace('#navcontainer li a', { fontFamily: 'BankGothic Md BT', hover: true});
	Cufon.replace('#subnav ul li a', { fontFamily: 'BankGothic Md BT', hover: true});
	Cufon.replace('#subnav ul li.seperator', { fontFamily: 'BankGothic Md BT'});
}

$(document).ready(function(){
	//setContentPosition();
	replaceFonts();
	//$(window).resize(setContentPosition);
});