﻿/* fontAvailable jQuery Plugin, v1.1
*
* Copyright (c) 2009, Howard Rauscher
* Licensed under the MIT License
*/
(function(b) { var a; b.fontAvailable = function(e) { var d, c; if (!a) { a = b(document.createElement("span")).css("visibility", "hidden").css("position", "absolute").css("top", "-10000px").css("left", "-10000px").html("abcdefghijklmnopqrstuvwxyz").appendTo(document.body) } d = a.css("font-family", "__FAKEFONT__").width(); c = a.height(); a.css("font-family", e); return d !== a.width() || c !== a.height() } })(jQuery);
