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

