$(document).ready(function(){
	$("#slider").easySlider({
		loop: true,                           // Looping
		orientation: 'fade',                  // Fading
		autoplayDuration: 4500,               // Autoplay with 1 second intervals
		autogeneratePagination: true,         // Automatically generate pagination links
		restartDuration: 2500,                // In case of user interaction, restart the autoplay after 2.5 seconds
		nextId: 'next',
		prevId: 'prev',
		pauseable: true                       // Pause by hovering over the image!  Then restart after 2.5 seconds (see above)
	});
});
