 function init_clientareahovershow()
 {
   var div      = document.getElementById('clientareahovershow');
   if(div)
   {
   var tw = new Tween(div.style, 'height', Tween.strongEaseIn, 0, 68, .2, 'px');
   div.startf = function ()
  	        {
  	           div.style.height='0px';
                   div.style.overflow = 'hidden';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = function(){ div.style.overflow = 'visible'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(68, .2);
  	        }
   div.endf  = function ()
  	       {
                   div.style.overflow = 'hidden';
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(0, .2);
  	       }
   }
}

function init_tweens()
{
 init_clientareahovershow();
}
