http://glossystudio.com/share/11.flv
кто может подсказать, как сделать, чтоб кнопка которая увеличивается была поверх остальных и ее не перекрывали другие и также от нее отбрасывалась тень?
вот скрипи

Код AS1/AS2:
function zoomIn() {
this.onEnterFrame = function() {
if (this._xscale < 120) {
this._xscale +=1;
this._yscale +=1;
}
}
}
function zoomOut() {
this.onEnterFrame = function() {
if (this._xscale > 100) {
this._xscale -=1;
this._yscale -=1;
}
}
}
foto1.onRollOver = zoomIn;
foto1.onRollOut = zoomOut;
foto2.onRollOver = zoomIn;
foto2.onRollOut = zoomOut;
foto3.onRollOver = zoomIn;
foto3.onRollOut = zoomOut;
foto4.onRollOver = zoomIn;
foto4.onRollOut = zoomOut;