var $j = jQuery.noConflict();

$j(function(){
			
	countImages = $('#slider ul img').length;
	
	if( countImages > 1){
		
		$j("#slider").easySlider({
			auto: true,
			controlsShow: false,
			speed:1500,
			pause:5000,
			continuous: true 
		});
		
	};
	
});
	

