$(document).ready(function(){
			$('#slider1').bxSlider({
					displaySlideQty: 5,
				moveSlideQty: 1,
				auto: true,
                 autoHover: true

			});
	
		});

$(function() { 
$('#slideout').hover(function() { 
$(this).animate({left:'0px'}, {queue:false, duration: 500}); 
}, function() { 
$(this).animate({left:'-350px'}, {queue:false, duration: 500}); 
}); 
});
