var loadedLibs = new Object();
function require(libraryName) {
   if (window.location.hash=="#TEST") libraryName = libraryName.replace("/info/","/info/TEST_");
   if (loadedLibs[libraryName]) return false;
   document.write('<script type="text/javascript" src="'+libraryName+'"></script>');
   loadedLibs[libraryName]=true;
}

function addEvent(obj, type, fn) {
if (obj.addEventListener) {
 obj.addEventListener(type, fn, false);
 } else if (obj.attachEvent) {
 obj["e" + type + fn] = fn;
 obj[type + fn] = function() { obj["e" + type + fn] (window.event); }
 obj.attachEvent("on" + type, obj[type + fn]);
 }
}
function initMoto() {
 fixIEpng();
}

require("/info/sc.us/proto_sc.jsgz");
require("/info/common/utils.js");
require("/info/sport/mmbox.js");
require("/info/video/swfobject_2.js");
require("/info/sport/pngfix.js");
require("/info/moto/trader.js");
require("/info/tokFM/swfobject.js");
require("/info/tokFM/audioPlayer.js");
require("/info/autocentrum/notes_switch.js");

addEvent(window,'load', initMoto);


