 function init_accessoriesmenuhovershow()
 {
   var div      = document.getElementById('accessoriesmenuhovershow');
   if(div)
   {
   var subdiv   = div.childNodes[0];
   var tw  = new Tween(subdiv.style, 'top', Tween.regularEaseInOut, -56, 0, .5, 'px');
   
   div.startf = function ()
  	        {
  	           subdiv.style.top = '-56px';
  	           
                   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(-56, .5);
  	           
  	       }
   }
}
 function init_clothingmenuhovershow()
 {
   var div      = document.getElementById('clothingmenuhovershow');
   if(div)
   {
   var subdiv   = div.childNodes[0];
   var tw  = new Tween(subdiv.style, 'top', Tween.regularEaseInOut, -90, 0, .5, 'px');
   
   div.startf = function ()
  	        {
  	           subdiv.style.top = '-90px';
  	           
                   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(-90, .5);
  	           
  	       }
   }
}

function init_tweens()
{
 init_clothingmenuhovershow();
 init_accessoriesmenuhovershow();
}
