I would like the slider to start at a different position every time the web page is loaded. I would not like to see the same first image every time the web page is loaded. Is this possible?
var startIndex = Math.floor(Math.random() * 4); //Assuming that you have 4 slides in your slider
var options = {
...,
$StartIndex: startIndex,
...
};