
// Put each of your customised sliders here.
// window.document.sliders = [ { ... }, { ... }, ... ] = an array of objects.

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 : "slider1",

	    left : 40,			// all in 'px' pixels 464,233, 477 is ok
	    top : 359,
	    pane_image: "images/spacer.gif", // pane.gif

	    scale_width : 205,
	    scale_height : 6,		
	    scale_image : "images/spacer.gif",

	    stylus_width : 30,
	    stylus_height : 11,
	    stylus_up   : "images/time5.gif",
	    stylus_down : "images/time5.gif",

	    tick_height : 10,
	    tick_width : 2,
	    tick_image : "tick.gif",

	    ticks : 2,
	    start_tick : 1,
	    tick_tabs : null,		// auto-calc'ed if set to null

	    label_size : 20,		// in 'px' not in 'pt'
	    label_font : "\"Courier\"",
	    labels : ["Conservative","Liberal"],
	    values : ["1","2"],

	    form_field_id : "slider1",
	    form_id : "form1"			// in  the HTML page.
	}, {
	    interactive : true,		// User modifiable on 'true'
	    continuous : true,		// Any position allowed if 'true'
	    span_id : "slider2",

	    left : 285,			// all in 'px' pixels
	    top : 358,
	    pane_image: "images/spacer.gif",

	    scale_width : 46,
	    scale_height : 11,		
	    scale_image : "images/spacer.gif",

	    stylus_width : 7,
	    stylus_height : 14,
	    stylus_up   : "images/sound5.gif",
	    stylus_down : "images/sound5.gif",

	    tick_height : 10,
	    tick_width : 2,
	    tick_image : "tick.gif",

	    ticks : 2,
	    start_tick : 1,
	    tick_tabs : null,		// auto-calc'ed if set to null

	    label_size : 20,		// in 'px' not in 'pt'
	    label_font : "\"Courier\"",
	    labels : ["Conservative","Liberal"],
	    values : ["1","2"],

	    form_field_id : "slider2",
	    form_id : "form2"			// in  the HTML page.
	}


	// next slider goes here. copy { ... } from the first slider
	// and add a , before the new slider.
    ];


