Page is a not externally linkable
rocknbil - 5:46 pm on Jul 7, 2009 (gmt 0)
} firstCell and secondCell will never get set in this condition, move return to the end. if (description.style.display == 'block') {
Also,
if (description.style.display == 'block') {
description.style.display = 'none';
return;
firstCell.className = 'start';
secondCell.className = 'end';
description.style.display = 'none';
firstCell.className = 'start';
secondCell.className = 'end';
return;
}