$(document).ready(function(){ 
	$('h1').each(function(){
		var e = $(this);
		var text = e.text();
		e.empty();
		e.append("<div style='margin-bottom: 16px; margin-top: 16px;'><img src='text.php?text="+escape(text)+"&font=metab&size=28&pad_right=4&pad_bottom=8&color=ee0000' /></div>");
	});

	$('.team h2').each(function(){
		var e = $(this);
		var text = e.text();
		e.replaceWith("<div style='text-align: center; margin-top: 10px; height: 30px;'><img style='display: inline;' class='replaced_text h2' src='text.php?text="+escape(text)+"&font=metab&size=15&pad_right=4&pad_bottom=8&color=ee0000' /></div>");
	});
	$('h2').each(function(){
		var e = $(this);
		var text = e.text();
		e.replaceWith("<div style='margin-bottom: 16px; margin-top: 32px;'><img src='text.php?text="+escape(text)+"&font=metab&size=18&pad_right=4&pad_bottom=8&color=666666' /></div>");
	});
});
