$.extend({
	getPath: function() {
            var js = document.scripts || L("script");
            var jsPath = js[js.length - 1].src;
            return jsPath.replace(jsPath.split('/')[jsPath.split('/').length - 1], '');
      },
     includePath: '',
     include: function(file) {
        var files = typeof file == "string" ? [file]:file;
        for (var i = 0; i < files.length; i++) {
            var name = files[i].replace(/^\s|\s$/g, "");
            var att = name.split('.');
            var ext = att[att.length - 1].toLowerCase();
            var isCSS = ext == "css";
            var tag = isCSS ? "link" : "script";
            var attr = isCSS ? " type='text/css' rel='stylesheet' " : " language='javascript' type='text/javascript' charset='utf-8' ";
            var link = (isCSS ? "href" : "src") + "='" + $.includePath + name + "'";
            if ($(tag + "[" + link + "]").length == 0) document.write("<" + tag + attr + link + "></" + tag + ">");
        }
   }
});
$.includePath=$.getPath();
$.include(['jquery-ui-1.10.3.custom.min.js','ImageAutoSize.js','jquery.easing.js','jquery.SuperSlide.2.1.js','Common.js']); 