function autoScroller(contentDiv,speed)
{contentDiv="#"+contentDiv;var offset="0px";var scrollSpeed=(speed==null)?5:parseInt(speed);$(contentDiv).parent().css({position:'relative',overflow:'hidden'});$(contentDiv).css({position:'absolute',top:0});contentDivHeight=$(contentDiv).outerHeight();$(contentDiv).everyTime(100,function(i){if(parseInt($(this).css('top'))>(contentDivHeight*(-1)+8))
{offset=parseInt($(this).css('top'))-scrollSpeed+"px";$(this).css({'top':offset});}
else
{offset=parseInt($(contentDiv).parent().outerHeight())+8+"px";$(this).css({'top':offset});}});$(contentDiv).mouseover(function()
{speed=scrollSpeed;scrollSpeed=0;});$(contentDiv).mouseout(function()
{scrollSpeed=speed;});}