		
  $(document).ready(function(){

		 $('#news_slider').bxSlider({

	        	mode: 'horizontal',                 // 'horizontal', 'vertical', 'fade'
				hideControlOnEnd: true,
				infiniteLoop: false,
				controls: true,
				speed: 800,                         // integer - in ms, duration of time slide transitions will occupy
				easing: 'easeInOutSine',            // used with jquery.easing.1.3.js - see http://gsgd.co.uk/sandbox/jquery/easing/ for available options
				nextText: '>>',                   // string - text displayed for 'next' control
				nextImage: '',                      // string - filepath of image used for 'next' control. ex: 'images/next.jpg'
				nextSelector:'#next',                 // jQuery selector - element to contain the next control. ex: '#next'
				prevText: '<<',                   // string - text displayed for 'previous' control
				prevImage: '',                      // string - filepath of image used for 'previous' control. ex: 'images/prev.jpg'
				prevSelector: '#prev',
				wrapperClass: 'news_slider-wrapper'
				
             
			});
});

