﻿Cufon.replace('h1');
Cufon.replace('.menu');
Cufon.replace('h2');
/*
function layout(){
	
	// alert(" doc size:"+$(document).height() + " win size: "+$(window).height())
	
	var totalcontentheight = $("#header").height()+$("#navigation").height()+$("#content").height();
	
	// footer code
	if(totalcontentheight>$(window).height())
	{
		$("#footer").css('position','relative');
	}
	else
	{
		$("#footer").css('position','absolute');
		//$("#footer").css('bottom',0);
		
		if ($.browser.msie == undefined) {
			$("#fill").css('height', $(window).height() - $("#content").height() - 420);
		}
		else {
			$("#fill").css('height', $(window).height() - $("#content").height() - 430);
		}
	}
	
	//alert($('#content').height()+" "+$("#sidebarfill").height()+" "+$('#sidebar-content').height());
	
	$("#sidebarfill").css('height',22);
	
	// sidebar code
	
	//if ($.browser.msie == undefined) {
		//$("#sidebarfill").css('height',$('#content').height()-$('#sidebar-content').height()+150);
	//}
	//else {
		//$("#sidebarfill").css('height',$('#content').height()-$('#sidebar-content').height());
	//}
	
	$("#sidebarfill").css('height',$('#content').height()-$('#sidebar-content').height());
}
*/
function writeBC(bc)
{
	$("#breadcrumb").html(bc);
}
