$(function(){

	$("div#col3_content").children("h1").each(function(){
		var text = $(this).html();
		$(this).hide();
		$(this).after('<img src="global/php/h1_heading.php?text='+text+'" alt="'+text+'" title="" style="margin-bottom:0.5em;" />');
	});

	$("div.darkbox").children("div").children("div").children("div").children("h5").each(function(){
		var text = $(this).html();
		$(this).html('<img src="global/php/darbox_headings.php?text='+text+'" alt="'+text+'" title="" style="margin-bottom:0.25em;" />');
	});

	$("div.box").children("h5").each(function(){
		var text = $(this).html();
		$(this).html('<img src="global/php/column_headings.php?text='+text+'" alt="'+text+'" title="" style="margin-bottom:0.25em;" />');
	});
	$("li.title").each(function(){
		var text = $(this).html();
		$(this).html('<img src="global/php/column_headings.php?text='+text+'" alt="'+text+'" title="" style="margin-bottom:0.25em;" />');
	});

});
