/**
 * (c) Digitale Offensive @ 2010
 * 
 **/

jQuery(document).ready(function(){
  function _loop()
  {
    var _w = 300; //jQuery(this).width();
    jQuery(this).css({left: '138px', position: 'relative'}).animate({left: '-300%'}, (_w*40), 'linear', _loop);
  }
  jQuery("div.mymarquee > a").each(function()
  {
    _loop.call(this);
  });

});