expand.js
391 Bytes
var TzHoldcoAd = function() {
var BB = document.getElementById('bigbox');
var Expand = document.getElementById('bigboxexp');
BB.onmouseover = function() {
Expand.style.display = 'block';
BB.style.display = 'none';
}
Expand.onmouseout = function() {
Expand.style.display = 'none';
BB.style.display = 'block';
}
}();