
// 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 : 180,			// all in 'px' pixels
	    top : 385,
	    pane_image: "../../Formatting/Images/Slider/pane.gif",

	    scale_width : 232,
	    scale_height : 6,		
	    scale_image : "../../Formatting/Images/Slider/scale.gif",

	    stylus_width : 23,
	    stylus_height : 20,
	    stylus_up   : "../../Formatting/Images/Slider/stylus.gif",
	    stylus_down : "../../Formatting/Images/Slider/stylus2.gif",

	    tick_height : 10,
	    tick_width : 2,
	    tick_image : "../../Formatting/Images/Slider/tick.gif",

	    ticks :4,
	    start_tick : 1.5,
	    tick_tabs : null,		// auto-calc'ed if set to null

	    label_size : 10,		// in 'px' not in 'pt'
	    data_label_size : 9,
	    label_font : "\"Verdana\"",
	    labels : ["Tranquil and secluded","Peaceful, but close to the hustle and bustle", "A hub of activity", "En vogue"],
	    values : ["IsEstablishmentAtmosphere1","IsEstablishmentAtmosphere2", "IsEstablishmentAtmosphere3", "IsEstablishmentAtmosphere4"],

	    form_field_id : "slider1",
	    form_id : "SearchLocation",
	    
	    header : "Atmosphere"
	    			// in  the HTML page.
	}

	// next slider goes here. copy { ... } from the first slider
	// and add a , before the new slider.

	    // Second slider (and the only one in this template file)
	 ,   {
	    interactive : true,		// User modifiable on 'true'
	    continuous : true,		// Any position allowed if 'true'
	    span_id : "slider2",

	    left : 180,			// all in 'px' pixels
	    top : 445,
	    pane_image: "../../Formatting/Images/Slider/pane.gif",

	    scale_width : 232,
	    scale_height : 6,		
	    scale_image : "../../Formatting/Images/Slider/scale.gif",

	    stylus_width : 23,
	    stylus_height : 20,
	    stylus_up   : "../../Formatting/Images/Slider/stylus.gif",
	    stylus_down : "../../Formatting/Images/Slider/stylus2.gif",

	    tick_height : 10,
	    tick_width : 2,
	    tick_image : "../../Formatting/Images/Slider/stylus2.gif",

	    ticks : 4,
	    start_tick : 1.5,
	    tick_tabs : null,		// auto-calc'ed if set to null

	    label_size : 10,		// in 'px' not in 'pt'
	    data_label_size : 9,
	    label_font : "\"Verdana\"",
	    labels : ["less than 300","300-599", "600-899", "more than 900"],
	    values : ["1","2","3","4"],

	    form_field_id : "slider2",
	    form_id : "SearchLocation",		// in  the HTML page.
	    
   	    header : "Price (ZAR)"
		
	    }

	    // Second slider (and the only one in this template file)
	 ,  {
	    interactive : true,		// User modifiable on 'true'
	    continuous : true,		// Any position allowed if 'true'
	    span_id : "slider3",

	    left : 180,			// all in 'px' pixels
	    top : 465,
	    pane_image: "../../Formatting/Images/Slider/pane.gif",

	    scale_width : 232,
	    scale_height : 6,		
	    scale_image : "../../Formatting/Images/Slider/scale.gif",

	    stylus_width : 23,
	    stylus_height : 20,
	    stylus_up   : "../../Formatting/Images/Slider/stylus.gif",
	    stylus_down : "../../Formatting/Images/Slider/stylus2.gif",

	    tick_height : 10,
	    tick_width : 2,
	    tick_image : "../../Formatting/Images/Slider/tick.gif",

	    ticks : 4,
	    start_tick : 1.5,
	    tick_tabs : null,		// auto-calc'ed if set to null

	    label_size : 10,		// in 'px' not in 'pt'
	    data_label_size : 9,
	    label_font : "\"Verdana\"",
	    labels : ["Average","Better than average", "Really good", "Exceptional"],
	    values : ["1","2","3","4"],

	    form_field_id : "slider3",
	    form_id : "SearchLocation",		// in  the HTML page.
	    
   	    header : "Accreditations"
	}
	
    ];

