﻿var jQueryScriptOutputted = false;
function initJQuery() {
    
    //if the jQuery object isn't available
    if (typeof(jQuery) == 'undefined') {
    
    
        if (! jQueryScriptOutputted) {
            //only output the script once..
            jQueryScriptOutputted = true;
            
            //output the script (load it from google api)
            document.write("<scr" + "ipt type=\"text/javascript\" src=\"/DesktopModules/AkanYazi/jquery.js\"></scr" + "ipt>");
        }
        setTimeout("initJQuery()", 50);
    } else {
    }
            
}
initJQuery();
