jQuery(document).ready(function() {
	/* http://cufon.shoqolate.com/generate/   <- generate JS fonts! */
	/* Loading Font on Demand */
	jQuery("#zitFont").change(function(){
		var fontLabel = jQuery("#zitFont").val();
		var fontFile = fontLabel + "_400.font.js";
		jQuery.ajaxSetup({async: false});
		jQuery.getScript('http://www.sublicentre.com/zit/fonts/' + fontFile);
		jQuery.ajaxSetup({async: true});
		Cufon.replace("#zitPreviewText", { fontFamily: fontLabel });
		textFont = fontLabel;
		updateDebug();
		//alert(fontFile); alert(fontLabel);
	});	
});