jQuery.fn.doubleStocksTicker=function(A){if(!A){return}if(!A.url){return}A=jQuery.extend({width:"100%",direction:"left",indicesBackgroundColor:"#CCCCCC",stocksBackgroundColor:"#EEEEEE",indexUpColor:"green",indexDownColor:"red",stockUpColor:"darkgreen",stockDownColor:"darkred",stocks:[],indices:[],indicesScrollingSpeed:2,stocksScrollingSpeed:2},A);return this.each(function(){var B=jQuery(this);B.css("width",A.width);var C=$("<div>");C.appendTo(B);C.stocksTicker({url:A.url,backgroundColor:A.stocksBackgroundColor,upColor:A.stockUpColor,downColor:A.stockDownColor,symbols:A.stocks,pauseOnMouseOver:false,direction:A.direction,scrollAmount:A.stocksScrollingSpeed,scrollDelay:0});var D=$("<div>");D.appendTo(B);D.stocksTicker({url:A.url,showNamesInsteadOfSymbols:true,backgroundColor:A.indicesBackgroundColor,upColor:A.indexUpColor,downColor:A.indexDownColor,symbols:A.indices,pauseOnMouseOver:false,direction:A.direction,scrollAmount:A.indicesScrollingSpeed,scrollDelay:0})})};
