function fonts()
{
		$$('h1').each(function(e) { 
		   e.set('html', '<img src="/wp-content/themes/cordelia/font_heading.php?style=h1&amp;text=' + e.get('text') + '"/>');
		   });
		
		$$('h2').each(function(e) { 
			if(e.get('class') == 'cordtitle')
			{
				e.set('html', '<img src="/wp-content/themes/cordelia/font_heading.php?style=cordtitle&amp;text=' + e.get('text') + '"/>');
			}
			else
				e.set('html', '<img src="/wp-content/themes/cordelia/font_heading.php?style=h2&amp;text=' + e.get('text') + '"/>');
	   });
	   
	   
	  
}

window.addEvent('domready', fonts);