 function init_capabilitiesmenuhovershow()
 {
   var div      = document.getElementById('capabilitiesmenuhovershow');
   if(div)
   {
   var subdiv   = div.childNodes[0];
   var tw  = new Tween(subdiv.style, 'top', Tween.regularEaseInOut, -18, 0, .3, 'px');
   
   div.startf = function ()
  	        {
  	           subdiv.style.top = '-18px';
  	           
                   div.style.overflow = 'hidden';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = function(){ div.style.overflow = 'visible'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(0, .3);
  	           
  	        }
   div.endf  = function ()
  	       { 
                   div.style.overflow = 'hidden';
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(-18, .3);
  	           
  	       }
   }
}
 function init_creativemenuhovershow()
 {
   var div      = document.getElementById('creativemenuhovershow');
   if(div)
   {
   var subdiv   = div.childNodes[0];
   var tw  = new Tween(subdiv.style, 'top', Tween.regularEaseInOut, -16, 0, .3, 'px');
   
   div.startf = function ()
  	        {
  	           subdiv.style.top = '-16px';
  	           
                   div.style.overflow = 'hidden';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = function(){ div.style.overflow = 'visible'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(0, .3);
  	           
  	        }
   div.endf  = function ()
  	       { 
                   div.style.overflow = 'hidden';
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(-16, .3);
  	           
  	       }
   }
}

function init_tweens()
{
 init_creativemenuhovershow();
 init_capabilitiesmenuhovershow();
}
