 function init_articlesmenuhovershow()
 {
   var div      = document.getElementById('articlesmenuhovershow');
   if(div)
   {
   var subdiv   = div.childNodes[0];
   var tw  = new Tween(subdiv.style, 'top', Tween.strongEaseInOut, -249, 0, .5, 'px');
   
   div.startf = function ()
  	        {
  	           subdiv.style.top = '-249px';
  	           
                   div.style.overflow = 'hidden';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = function(){ div.style.overflow = 'visible'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(0, .5);
  	           
  	        }
   div.endf  = function ()
  	       { 
                   div.style.overflow = 'hidden';
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(-249, .5);
  	           
  	       }
   }
}
 function init_aboutmenuhovershow()
 {
   var div      = document.getElementById('aboutmenuhovershow');
   if(div)
   {
   var subdiv   = div.childNodes[0];
   var tw  = new Tween(subdiv.style, 'top', Tween.strongEaseInOut, -112, 0, .5, 'px');
   
   div.startf = function ()
  	        {
  	           subdiv.style.top = '-112px';
  	           
                   div.style.overflow = 'hidden';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = function(){ div.style.overflow = 'visible'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(0, .5);
  	           
  	        }
   div.endf  = function ()
  	       { 
                   div.style.overflow = 'hidden';
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(-112, .5);
  	           
  	       }
   }
}
 function init_coachingmenuhovershow()
 {
   var div      = document.getElementById('coachingmenuhovershow');
   if(div)
   {
   var subdiv   = div.childNodes[0];
   var tw  = new Tween(subdiv.style, 'top', Tween.strongEaseInOut, -182, 0, .5, 'px');
   
   div.startf = function ()
  	        {
  	           subdiv.style.top = '-182px';
  	           
                   div.style.overflow = 'hidden';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = function(){ div.style.overflow = 'visible'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(0, .5);
  	           
  	        }
   div.endf  = function ()
  	       { 
                   div.style.overflow = 'hidden';
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(-182, .5);
  	           
  	       }
   }
}
 function init_speakingmenuhovershow()
 {
   var div      = document.getElementById('speakingmenuhovershow');
   if(div)
   {
   var subdiv   = div.childNodes[0];
   var tw  = new Tween(subdiv.style, 'top', Tween.strongEaseInOut, -140, 0, .5, 'px');
   
   div.startf = function ()
  	        {
  	           subdiv.style.top = '-140px';
  	           
                   div.style.overflow = 'hidden';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = function(){ div.style.overflow = 'visible'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(0, .5);
  	           
  	        }
   div.endf  = function ()
  	       { 
                   div.style.overflow = 'hidden';
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(-140, .5);
  	           
  	       }
   }
}

function init_tweens()
{
 init_speakingmenuhovershow();
 init_coachingmenuhovershow();
 init_aboutmenuhovershow();
 init_articlesmenuhovershow();
}
