diff --git a/includes/views_ticker.views.inc b/includes/views_ticker.views.inc
index c19ef15..e3d4a7c 100644
--- a/includes/views_ticker.views.inc
+++ b/includes/views_ticker.views.inc
@@ -43,6 +43,11 @@ function template_preprocess_views_ticker_view(&$variables)
 		$vTickerOpts .= ' , showItems:' . $options['vTicker_Options']['vTicker_items'];
 		$vTickerOpts .= ' , direction: "' . $options['vTicker_Options']['vTicker_direction'] . '"';
 	}
+	elseif ($options['scroller_type'] == 'bbc')
+	{
+		$bbcOpts .= ' , tickerRate:' . $options['bbc_Options']['bbc_speed'];
+		$bbcOpts .= ' , loopDelay:' . $options['bbc_Options']['bbc_pause'];
+	}
 	else
 	{
 		$variables['align'] = 'fade-container';
@@ -56,7 +61,7 @@ function template_preprocess_views_ticker_view(&$variables)
 	elseif ($options['scroller_type'] == 'bbc')
 	{
 		drupal_add_js($path . '/js/views.ticker.bbc.js');
-		drupal_add_js('(function($) { Drupal.behaviors.views_ticker_bbc = { attach: function (context) { var options = { newsList: "#views-ticker-bbc-' . $view->name . '", startDelay: 10, placeHolder1: " |"}; $().newsTicker(options);}};})(jQuery);', 'inline');
+		drupal_add_js('(function($) { Drupal.behaviors.views_ticker_bbc = { attach: function (context) { var options = { newsList: "#views-ticker-bbc-' . $view->name . '"' . $bbcOpts . ', startDelay: 10, placeHolder1: " |"}; $().newsTicker(options);}};})(jQuery);', 'inline');
 	}
 	elseif ($options['scroller_type'] == 'vertical')
 	{
diff --git a/includes/views_ticker_style_plugin.inc b/includes/views_ticker_style_plugin.inc
index 71c52b6..7766bc0 100644
--- a/includes/views_ticker_style_plugin.inc
+++ b/includes/views_ticker_style_plugin.inc
@@ -31,6 +31,11 @@ class views_ticker_style_plugin extends views_plugin_style {
 	'vTicker_items' => 5,
 	'vTicker_direction' => 'up',
 	);
+
+	$options['bbc_Options']['default']=array (
+	'bbc_speed' => 50,
+	'bbc_pause' => 3000,
+	);
 	
 	return $options;
   }
@@ -92,6 +97,47 @@ class views_ticker_style_plugin extends views_plugin_style {
 		'#description' => t(''),
 		'#default_value' => $this->options['liScroll_Options']['liScroll_mouseover'],
 	);
+
+	$form['bbc_Options'] = array(
+	  '#type' => 'fieldset',
+	  '#title' => t('BBC Options'),
+	  '#collapsible' => TRUE,
+	  '#collapsed' => TRUE,
+	);
+
+	$form['bbc_Options']['bbc_pause'] = array(
+	  '#type' => 'select',
+	  '#title' => t('BBC pause'),
+	  '#description' => t(''),
+	  '#default_value' => $this->options['bbc_Options']['bbc_pause'],
+	  '#options' => array(
+		500 => t('500 millisecond'),
+		1000 => t('One second'),
+		2000 => t('Two seconds'),
+		3000 => t('Three seconds'),
+		4000 => t('Four seconds'),
+		5000 => t('Five seconds'),
+		6000 => t('Six seconds'),
+		7000 => t('Seven seconds'),
+		8000 => t('Eight seconds'),
+		9000 => t('Nine seconds'),
+		10000 => t('Ten seconds'),
+	  ),
+	);
+	
+	$form['bbc_Options']['bbc_speed'] = array(
+	  '#type' => 'select',
+	  '#title' => t('BBC speed'),
+	  '#description' => t(''),
+	  '#default_value' => $this->options['bbc_Options']['bbc_speed'],
+	  '#options' => array(
+		200 => t('Very slow'),
+		150 => t('Slow'),
+		80 => t('Normal'),
+		40 => t('Fast'),
+		20 => t('Very fast'),
+	  ),
+	);
 	
 //####### vertical Options (vTicker) ########
 	// vertical
