$(document).ready(function(e)
{
	$("#MainColumn h1,#MainColumn h2").each(function() 
	{
		renderHeader($(this),450);
	});

	$("#RightColumn h1, #RightColumn h2").each(function() 
	{
		renderHeader($(this),210);
	});

	$("#Frontpage h1, #Frontpage h2").each(function() 
	{
		renderHeader($(this),0);
	});

});


function renderHeader(tag,width)
{
	widthString = width ? "&width="+width : "";
	var text = tag.text().toUpperCase();
		
	var font = "interstateregular.ttf";

	if (window.location.href.indexOf('/zh/') > 0)
	{
		font = "simhei.ttf";
	}
	
	var imgSrc = "http://www.ccpgames.com/umbraco/ImageGen.ashx?Font=/media/18585/" + font + "&text="+text+"&FontSize=19"+widthString+"&AntiAlias=true";
	
	tag.html("");

	$(document.createElement("img"))
    	.attr({ src: imgSrc, alt: text })
   
    	.appendTo(tag)
	tag.show();
}
