$(document).ready(function(){
	
	$("#slider").show();
						   
	$("#slider").easySlider({
		prevId: 'prevBtn',
		prevText: '',
		nextId: 'nextBtn',	
		nextText: '',
		controlsShow: true,
		controlsBefore: '<p id="controls">',
		controlsAfter: '</p>',	
		controlsFade: true,
		firstId: 'firstBtn',
		firstText: 'First',
		firstShow: false,
		lastId: 'lastBtn',	
		lastText: 'Last',
		lastShow: false,				
		vertical: false,
		speed: 800,
		auto: true,
		pause: 7000,
		continuous: true,
		loop: true,                           // Looping
		autoplayDuration: 7000,               // Autoplay with 7 second intervals
		restartDuration: 1500,                // In case of user interaction, restart the autoplay after 2.5 seconds
		pauseable: true  
							
	});
});
