﻿ //Including CXP JS files
var JSFile1="http://content.sentocxp.com/javascripts/cxp.js";
var JSFile2="http://sentocxp.com/site/150/js/main.js"
        
function injectJS(file,id)
{
    var ele=document.getElementById(id);
    //var ele=document.getElementsByTagName("body")[0];
    var js=document.createElement("script");
    js.setAttribute("type","text/javascript");
    js.setAttribute("src",file);
    ele.appendChild(js);
}

function isjQuery()
{
    if(window.jQuery)return true;
    return false;
}

if(isjQuery()==false)
{
    injectJS(JSFile1,"CXPJS");
    injectJS(JSFile2,"CXPJS");
}
else
{
    jQuery(document).ready(
    function()
    {
        //injectJS(JSFile1,"CXPJS");
        //injectJS(JSFile2,"CXPJS");
    }
    )
}

