 function init_programmenuhovershow()
 {
   var div      = document.getElementById('programmenuhovershow');
   if(div)
   {
   var subdiv   = div.childNodes[0];
   var tw  = new Tween(subdiv.style, 'top', Tween.regularEaseInOut, -36, 0, 0.6, 'px');
   
   div.startf = function ()
  	        {
  	           subdiv.style.top = '-36px';
  	           
                   div.style.overflow = 'hidden';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = function(){ div.style.overflow = 'visible'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(0, 0.6);
  	           
  	        }
   div.endf  = function ()
  	       { 
                   div.style.overflow = 'hidden';
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(-36, 0.6);
  	           
  	       }
   }
}

function init_tweens()
{
 init_programmenuhovershow();
}
