// version using a function returning value, for rev 1.33+ dropmenus.js

// HOST_DEPENDENT The following line is specific to the server used to host the site..
var site=6; //0=PC4; 1=jazzcreation; 2=assistkd.co.uk; 3=assistkd.com on vps IP addr; 4 =assistkd.com, VPS
            // 5=wdu IP addr; 6=wdu assistkd.com; 7 = assistba.com on dedicated server



function basehref() {
  if (site==0) {
    var path = buildPath("AKD3");
    return (path);
  }
  else if (site==1) {
    return ("http://jazzcreation.com/AKD3/"); 
  }
  else if (site==2) {
    return ("http://assistkd.co.uk/");
  }
  else if (site==3) {
    return ("http://212.241.215.95/");
  }
  else if (site==4) {
    return ("http://assistkd.com/");
  }
  else if (site==5) {
    return ("http://94.136.53.205:81/caddoo/");
  }
  else if (site==6) {
    var path = buildPath("assistkd.com");
    return (path);
  }
  else if (site==7) {
    var path = buildPath("assistba.com");
    return (path);
  }
}
