// JavaScript Document
var $j = jQuery.noConflict();
$j(document).ready(function(){ 

$j("#slider1").easySlider({
		loop: true,                            // Looping
		autoplayDuration: 1,                   // 0 means no autoplay
		autoplayDuration: 10000,               // Autoplay with 1 second intervals
		restartDuration: 2500, 
		autogeneratePagination: false,          // Automatically create links
		nextId: 'nextA',
		nextText: 'Hover Next',
		prevId: 'prevA',
		prevText: 'Hover Prev',
		hover: false,                           // The Links are hover links
		hoverPause: 1,                         // No pause if you hover over the image (this is default)
		easing: 'linear'                       // Linear style animation
	});
});