$(document).ready(function(){
//	$('#scroller').cycle({ 
//	    fx: 'scrollUp', 
//		pause: 1,
//		random: 1,
//	    speed: 300,
//	    timeout: 7000,
//		cleartype:1,
//		nowrap:1
//	 });
     
	 $('#scroller')
        .marquee('pointer')
        .mouseover(function () {
          $(this).trigger('stop');
        })
        .mouseout(function () {
          $(this).trigger('start');
        });
	 $('#scroller').show();
//     alert ($().jquery);
});
