$(function(){
var $block = $('#abgneBlock'),
$slides = $('#player ul.list', $block),
_height = $slides.find('li').height(),
$li = $('li', $slides),
_animateSpeed = 400,
timer, _speed = 4000;
var _str = '';
for(var i=0, j=$li.length;i<j;i++){
_str += '<li class="playerControl_' + (i+1) + '">' + (i+1) + '</li>';
}
var $controlLi = $('<ul class="playerControl"></ul>').html(_str).appendTo($slides.parent()).find('li');
$controlLi.mouseover(function(){
clearTimeout(timer);
var $this = $(this);
$this.addClass('current').siblings('.current').removeClass('current');
$slides.stop().animate({
top: _height * $this.index() * -1
}, _animateSpeed, function(){
if(!_isOver) timer = setTimeout(moveNext, _speed);
});
return false;
}).eq(0).mouseover();