jQuery(document).ready(function(){
	jQuery('h1').each(function()
	{
		text = this.innerHTML;
		text = text.replace(/(.)/, "<span class='alpha'>$1</span>")
		this.innerHTML = text;
	});
	jQuery('h2').each(function()
	{
		text = this.innerHTML;
		text = text.replace(/(.)/, "<span class='alpha'>$1</span>")
		this.innerHTML = text;
	});

});
