/** * Autoload */ (function ($) { // Autoload namespace: private properties and methods var Autoload = { /** * Include necessary CSS file */ css: function (file, options) { var collection = $("link[rel=stylesheet]"), path = options.basePath + options.cssPath + file, element, i; for (i = 0; i < collection.length; i += 1) { if (path === this.href) { // is loaded return true; } } if ($.browser.msie) { /*