$(function()
{
	// Heading text-replacement.
	var headings = $('h2.replace');
	headings.each(function(index)
	{
		var options =
		{
			letterCase: 'normal', // Can be either 'normal', 'upper', or 'lower'. Will try and make this automatically detected.
			colour: 'ff7f00', // Will also try to make this automatically detected.
			size: '15' // Font size in pixels.
		};
		
		var $this = $(this);
		$this.css({textIndent: '-1000em', backgroundImage: 'url(\'http://www.sssimage.com/wp-content/themes/sss/resources/customfont.php?size=' + options.size + '&colour=' + options.colour + '&case=' + options.letterCase + '&height=' + $this.height() + '&width=' + $this.width() + '&text=' + escape($this.text()) + '\')' });
	});
});