0
Yes you can add a piece of code just after the var sliderOptions block to handle the different domains. Below is a sample for four domains:
var sliderOptions =
{
......
license: "license1"
};
if(document.domain.indexOf("domain2.com")!=-1)
sliderOptions.license = "license2";
else if (document.domain.indexOf("domain3.com")!=-1)
sliderOptions.license = "license3";
else if (document.domain.indexOf("domain4.com")!=-1)
sliderOptions.license = "license4";
var imageSlider=new mcImgSlider(sliderOptions);
/* Menucool Javascript Image Slider ... (the follows are remain unchanged)