скажите, сильно будет тормозить если вот такую функцию юзать
function myfunc(elem) {
with (elem) {
with (getElementsByTagName('div')[0]) {
style.width = '100px';
style.height = '100px';
style.margin = '0px';
}
getElementsByTagName('div')[1].style.display = 'none';
style.margin = '0px 15px 15px 15px';
style.width = '100px';
style.height = '100px';
style.cssFloat = 'left';
}
}
при учете что входящих
elem будет штук 35 - 45?