	window.addEvent('domready', function() {
		
		//slider variables for making things easier below
		var clientsHolder = $('clients');
		var clientsItems = $$(clientsHolder.getElements('.citem'));
		
		
		//create instance of the slider, and start it up		
		var clientsSlider = new SL_Slider({
			slideTimer: 6000,
			orientation: 'none',      //vertical, horizontal, or none: None will create a fading in/out transition.
			fade: true,                    //if true will fade the outgoing slide - only used if orientation is != None
			isPaused: false,
			container: clientsHolder,
			items: clientsItems
		});
		clientsSlider.start();
		
					 
	});
