
// Put each of your customised sliders here.
// window.document.sliders = [ { ... }, { ... }, ... ] = an array of objects.

var start_tick_vol = getCookie('PresentVolume');

if (start_tick_vol == null || start_tick_vol == "")
{
	start_tick_vol = 50;
}

start_tick_vol = start_tick_vol/100;

var sliders = [

	    // First slider (and the only one in this template file)
	    {
	    interactive : true,		// User modifiable on 'true'
	    continuous : true,		// Any position allowed if 'true'
	    span_id : "Volume1",

	    left : 391,			// all in 'px' pixels
	    top : 226,
	    pane_image: "../../images/blank.gif",

	    scale_width : 47,
	    scale_height : 21,		
	    scale_image : "../../images/blank.gif", //volumeBack.jpg",

	    stylus_width : 11,
	    stylus_height : 21,
	    stylus_up   : "../../images/volumeButton.gif",
	    stylus_down : "../../images/VolumeButtonDown.gif",

	    tick_height : 2.5,
	    tick_width : 1,
	    tick_image : "../../images/blank.gif",

	    ticks : 2,
	    start_tick : start_tick_vol, //.5,
	    tick_tabs : null,		// auto-calc'ed if set to null

	    label_size : 1,		// in 'px' not in 'pt'
	    label_font : "\"Courier\"",
	    labels : ["|","|"],
	    values : ["",""],

	    form_field_id : "slider1",
	    form_id : "Volume1"			// in  the HTML page.
	}

	// next slider goes here. copy { ... } from the first slider
	// and add a , before the new slider.
    ];

