/*
	File Name:		sliders.js
	Description:	LiveRoute homepage sliders
	Version:		1
	Author:		Dmitry Korsunov
	E-mail:		dmitry.korsunov@gmail.com
	
	No Rights Reserved.
	But some credit would be appreciated.
*/

$(document).ready(function(){
	
	/*
	$("#slider").easySlider({
		prevText: '&laquo;',
		nextText: '&raquo;',
		auto: false, 
		continuous: true
	});
	*/
	
	$("#slider3").easySlider({
		prevText: '&laquo;',
		nextText: '&raquo;',
		prevId: 'prevBtn3',
		nextId: 'nextBtn3',
		auto: true, 
		continuous: true
	});
	
	$("#slider4").easySlider({
		prevText: '&laquo;',
		nextText: '&raquo;',
		prevId: 'prevBtn4',
		nextId: 'nextBtn4',
		auto: true,
		pause: 8000,
		continuous: true
	});
	
});	
