function scrollEngines(){
  try{
  	this.container = $('scroller');
  	this.container.Scroller = this;
  	this.speed = 40;
  }catch(err){}

  this.scroll = function() {
      if ($(this.container.id)){
				var c = this.container.firstChild;
				var first = null;
				while (c) {
						if (c.tagName == 'LI') {
								first = c;
								break;
						}
						c = c.nextSibling;
				}
				var nodeSize = 110;
				var px = 0;
				nodeSize = first.clientWidth;
				if (first.style.marginLeft != '') {
						px = parseInt(first.style.marginLeft);
				}
				first.style.marginLeft = ( px - 1 ) + 'px';
				if ( parseInt(first.style.marginLeft) <= -(nodeSize) ) {
						first.style.marginLeft = '0px';
						this.container.removeChild(first);
						this.container.appendChild(first);
				}
				try{
					setTimeout('if ($(\'' + this.container.id + '\')){ try{ $(\'' + this.container.id + '\').Scroller.scroll(); }catch(err){} }', this.speed);
				}catch(err){
				}	
			}
			
  }
  if ($('scroller')){
  	 try{
  	 	 setTimeout('$(\'scroller\').Scroller.scroll()', this.speed);
  	 }catch(err){
  	 }
  }
}
