$(document).ready(function() {
 	
	font.setup(); // run font script setup 
	
	if (font.isInstalled("Corbel")) {
		$("body").addClass("corbel"); // add the corbel class to body tag if font is found
	}
		   
   $(document).pngFix();  // fix PNGs
	
});


