function positionFooter()
{
	var bottomHeight 	 = $('footer').getHeight();
	$('footer').setStyle('display', 'none');
	var windowHeight 	 = window.getHeight();
	var contentHeight 	 = $('all').getHeight();
			
	if ((contentHeight + bottomHeight) < windowHeight)
	{
		$('footer').setStyle('top', (windowHeight - bottomHeight) + 'px');
		$('footer').setStyle('position', 'absolute');
	}else
	{
		$('footer').setStyle('position', 'relative');
		$('footer').setStyle('top', '0px');
	}
	
	$('footer').setStyle('display', 'block');
}

function init_fonts()
{ 	
	Cufon.replace('h1');
	Cufon.replace('h2');
}