 function init_productsmenuhovershow()
 {
   var div      = document.getElementById('productsmenuhovershow');
   if(div)
   {
   var tw  = new Tween(div.style, 'left', Tween.regularEaseIn, 326, 389, .3, 'px');
   var tw2 = new Tween(div.style, 'top', Tween.regularEaseIn, 139, 141, .3, 'px');
   div.startf = function ()
  	        {
  	           div.style.left='326px';
                   div.style.top='139px';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = undefined;
  	           tw.continueTo(389, .3);
  	           tw2.continueTo(141, .3);
  	        }         
   div.endf  = function ()
  	       {
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(326, .3);
  	           tw2.continueTo(139, .3);
  	       }
   }
} function init_productshovershow()
 {
   var div      = document.getElementById('productshovershow');
   if(div)
   {
   var tw  = new Tween(div.style, 'left', Tween.regularEaseInOut, 326, 326, .3, 'px');
   var tw2 = new Tween(div.style, 'top', Tween.regularEaseInOut, 139, 139, .3, 'px');
   div.startf = function ()
  	        {
  	           div.style.left='326px';
                   div.style.top='139px';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = undefined;
  	           tw.continueTo(326, .3);
  	           tw2.continueTo(139, .3);
  	        }
   div.endf  = function ()
               {
                 div.style.display = 'none';
                 tw.rewind();
                 tw2.rewind();
               }
   }
}
function init_tweens()
{
 init_productshovershow();
 init_productsmenuhovershow();
}
