// JavaScript Document
var NewsSlider = function (){
	// Carga el script para hacer funcionar el main_features
	this.load = function(object_id) {
    $(object_id).bxSlider({
			mode:					'fade',
			auto: 				true,					// Makes change automaticlly
			autoControls: true,					// Show start and top controls
			autoHover: 		true,					// IF slide stops on Mouse Hover
			pager: 				false,				// Display a pager
			controls: 		false,				// previous and next controls
			pause:				3000					// in milliseconds, the duration of slide transition
		});
	}
}
news_slider = new NewsSlider();
