 function init_ohgc1hovershow()
 {
   var div      = document.getElementById('ohgc1hovershow');
   if(div)
   {
   var tw  = new Tween(div.style, 'left', Tween.regularEaseInOut, 869, 180, .5, 'px');
   var tw2 = new Tween(div.style, 'top', Tween.regularEaseInOut, 72, 71, .5, 'px');
   div.startf = function ()
  	        {
  	           div.style.left='869px';
                   div.style.top='72px';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = undefined;
  	           tw.continueTo(180, .5);
  	           tw2.continueTo(71, .5);
  	        }         
   div.endf  = function ()
  	       {
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(869, .5);
  	           tw2.continueTo(72, .5);
  	       }
   }
}
function init_tweens()
{
 init_ohgc1hovershow();
}