﻿var faderInitialise = function() {
fadecontentslider.init({
id: "contentslider",  //id of main slider DIV
    contentsource: ["ajax", rootPath() + "/carousel/slidermain.html"],  //Valid values: ["inline", ""] or ["ajax", "path_to_file"]  
    toc: "",  //Valid values: "#increment", "markup", ["label1", "label2", etc]
    nextprev: ["Previous", "Next"],  //labels for "prev" and "next" links. Set to "" to hide.
    revealtype: "click", //Behavior of pagination links to reveal the slides: "click" or "mouseover"
    enablefade: [true, 0.1],  //[true/false, fadedegree]
    autorotate: [true, 3000],  //[true/false, pausetime]
    onChange: function(previndex, curindex) {  //event handler fired whenever script changes slide
        //previndex holds index of last slide viewed b4 current (1=1st slide, 2nd=2nd etc)
        //curindex holds index of currently shown slide (1=1st slide, 2nd=2nd etc)
    }
});};

function rootPath() {
    var root = document.location.protocol + '//' + document.location.host;
    var pn = document.location.pathname;
    pn = pn.substring(0, pn.indexOf('/', 1));
    // KS 15/02/10 in real life we dont want path name
    //alert(root + pn);
    if (document.location.host == "localhost") return root + pn; else return root;
}

