/************************************************************************************************************************************************
	Rudi Design Website

	gallery-slider-01-basic.js
*************************************************************************************************************************************************/


$(document).ready(function(){
	

	$('#rudidesign_slider_home').gallerySlider01({
		autoStart: true,
		animSpeed: 1000, //animation speed in milliseconds 
		pauseTime: 7500, //pause time for auto play mode in milliseconds (bring speed back to 7500 when you are done testing)
		pauseOnHover: true,
		listNav: true,
		listNavThumbs: true,
		listNavThumbName: '_thumb',
		arrowsNavHide: true,
		layers:	'true',
		layers: {
			first: {
				className: 'circles-one',
				offset: 6,
				direction: 'ltr' //direction for the animation of the sub layer. Can be either 'ltr' or 'rtl' (ltr=right to left) (rtl=left to right)
			},
			second: {
				className: 'circles-two',
				offset: 16,
				direction: 'ltr' //direction for the animation of the sub layer. Can be either 'ltr' or 'rtl' (ltr=right to left) (rtl=left to right)
			}
		}
	});
})(jQuery);  					   
