
var generate_url = '/generate.php';

$(document).ready(function() {
   
	
	$('h2').each(function(){
		
		if($(this).hasClass('page_title'))
		{
			color = 'FFFFFF';
			font_size = '22';
		}
		else
		{
			color = '1B5186';
			font_size = '22';
		}
		

		save = $(this).html();
		$(this).html('<img src="' + generate_url + '?text=' + escape(save) + '&font_size='+font_size+'&font_color=' + color + '" alt="' + save + '" />');
		
	});
	
	

$('.news h4').each(function(){

		save = $(this).html();
		$(this).html('<img src="' + generate_url + '?text=' + escape(save) + '&font_size=19&font_color=1B5186" alt="' + save + '" />');
		
	});


	$('h3').each(function(){
	
		if($(this).hasClass('name'))
		{
			color = '1B5186';
			font_size = '22';
		}
		else
		{
			color = '333333';
			font_size = '15';
		}
		

		save = $(this).html();
		$(this).html('<img src="' + generate_url + '?text=' + escape(save) + '&font_size='+font_size+'&font_color=' + color + '" alt="' + save + '" />');
		

	});
	
		
	
	

});
