var ql = 0;
var ss = 0;
var active = 0;

$(document).ready(function (){ 
  $(".marquee").marquee({ 
         yScroll: "top"                          // the position of the marquee initially scroll (can be  
                                                 // either "top" or "bottom") 
       , showSpeed: 0                          // the speed of to animate the initial dropdown of the messages 
       , scrollSpeed: 16                       // the speed of the scrolling (keep number low) 
       , pauseSpeed: 1500                        // the time to wait before showing the next message or  
                                                 // scrolling current message 
       , pauseOnHover: false                      // determine if we should pause on mouse hover 
       , loop: -1                                // determine how many times to loop through the marquees  
                                                 // (#'s < 0 = infinite) 
       , fxEasingShow: "swing"                   // the animition easing to use when showing a new marquee 
       , fxEasingScroll: "linear"                // the animition easing to use when showing a new marquee 
	}); 
}); 
