$(window).load(function(){ //$(window).load() must be used instead of $(document).ready() because of Webkit compatibility				

		// News slider > Vertical
		$(".newslider-vertical").sliderkit({
			shownavitems:3,
			verticalnav:true,
			navitemshover:true,
			circular:true
		});
		
			// Photo slider > Minimal
		$(".photoslider-mini").sliderkit({
			autospeed:3000,
			panelbtnshover:false,
			circular:true
		});
		
		// Carousel
		$("#carousel").sliderkit({
			auto:true,
			autospeed:4000,
			shownavitems:1,
			circular:true,
			fastchange:true,
			scrolleasing:"easeOutExpo", //"easeOutBounce,easeOutExpo, easeOutBack"
			scrollspeed:800
		});	
		
		// Photo gallery > With captions - portfolio
		$(".photosgallery-captions").sliderkit({
			mousewheel:false,
			keyboard:false,
			shownavitems:7,
			circular:true,
			navitemshover:false,
			panelfxspeed:400,
			auto:true,
			autostill:1,
			delaycaptions:true
		});
		
		// Photo gallery > With captions - what is senitype2
		$(".photosgallery-captions1").sliderkit({
			mousewheel:false,
			keyboard:false,
			shownavitems:4,
			circular:true,
			navitemshover:false,
			panelfxspeed:400,
			auto:true,
			autostill:1,
			delaycaptions:true
		});

	});	
