switch (document.location.hostname)
{
case 'asite.com':
var rootFolder = '/devbuild/'; break;
case 'localhost' :
var rootFolder = '/mytestSiteA/'; break;
default : // set whatever you want
}
and then use
var root = document.location.hostname + rootFolder;