сейчас проблема тут в строке 1-3 "Требуется объект"
var book = document.getElementById(bookId).offsetLeft;
if(move == 1)
{
if(tmp == 1)
{
var i = book;
if(book - shelf.offsetLeft + 5 >= div.offsetWidth + 20)
var j = book - div.offsetWidth + 20;
else
{
if(book - shelf.offsetLeft + 5 < div.offsetWidth + 20)
var j = shelf.offsetLeft + 4;
}
}
else
{
if(tmp == 2)
{
var i = book;
if(shelf.offsetLeft + shelf.offsetWidth - book - 5 >= div.offsetWidth + 20)
var j = book + div.offsetWidth - 20;
else
{
if(shelf.offsetLeft + shelf.offsetWidth - book - 5 < div.offsetWidth + 20)
var j = shelf.offsetLeft + shelf.offsetWidth - div.offsetWidth - 4;
}
}
}
if(j > shelf.offsetLeft + shelf.offsetWidth - div.offsetWidth - 4)
j = shelf.offsetLeft + shelf.offsetWidth - div.offsetWidth - 4;
t1A = new Tween(document.getElementById(bookId).style,'left',Tween.strongEaseOut,i,j,0.5,'px');
t1A.start();
tmp = 0;
move = 0;
}
}
}
}