window.addEvent('domready', function() {
		
		//slider variables for making things easier below
		var itemsHolder = $('marki-container');
		var myItems = $$(itemsHolder.getElements('.markiitems'));
		
		
		
		//create instance of the slider, and start it up		
		var mySlider = new SL_Slider({
			slideTimer: 4500,
			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: itemsHolder,
			items: myItems,
		});
		mySlider.start();
					 
	});

window.addEvent('domready', function() {
		
		//slider variables for making things easier below
		var itemsHolder = $('klienci-container');
		var myItems = $$(itemsHolder.getElements('.klienciitems'));
		
		
		
		//create instance of the slider, and start it up		
		var mySlider = new SL_Slider({
			slideTimer: 4500,
			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: itemsHolder,
			items: myItems,
		});
		mySlider.start();
					 
	});
