$(document).ready(function(){ 
	$('h1').each(function(){
		var e = $(this);
		var text = e.text();
		e.empty();
		e.append("<img class='replaced_text h1' src='text.php?text="+escape(text)+"&font=HelveticaNeueLTStd-Hv&size=29&pad_right=4&pad_bottom=8&color=ff0000' />");
	});
	/*
	$('h2').each(function(){
		var e = $(this);
		var text = e.text();
		e.replaceWith("<img class='replaced_text h2' src='text.php?text="+escape(text)+"&font=helveti1&size=14&pad_right=4&pad_bottom=8&color=666666' />");
	});
	*/
});
