// requires JQUERY

// make all items custom typeface     

$(function(){

	$('.franklin-gothic-medium').each(function() { 
		var txt = $(this).html();
/*
		var ptSize = $(this).css("font-size");
		var lineHeight = $(this).css("line-height");
*/		
		var ptSize = "66";
		var lineHeight = "60";
		var fName = txt.replace(' ', '').replace(' ', '').replace(' ', '');
		
						
						
		$(this).html('<img src="/assets/php/texttoimg.php?text=' + txt + '&font=medium&size=' + ptSize + '&height=' + lineHeight + '&color=000000&bkcolor=ffffff"  alt="' + txt + '" title="' + txt + '"/>');
	});
	
		$('.franklin-gothic-demi').each(function() { 
			var txt = $(this).html();
	/*
			var ptSize = $(this).css("font-size");
			var lineHeight = $(this).css("line-height");
	*/		
			var ptSize = "20";
			var lineHeight = "60";
			var fName = txt.replace(' ', '').replace(' ', '').replace(' ', '');



			$(this).html('<img src="/assets/php/texttoimg.php?text=' + txt + '&font=medium&size=' + ptSize + '&height=' + lineHeight + '&color=000000&bkcolor=ffffff"  alt="' + txt + '" title="' + txt + '"/>');
		});
})
