 function init_skypeembedhovershow()
 {
 	var div      = document.getElementById('skypeembedhovershow');
        if(div)
        {
 	var tw = new OpacityTween(div,Tween.regularEaseInOut,0,100,.3);
 	div.startf = function ()
  	             {
  	                tw.onMotionFinished = undefined;
  	                tw.continueTo(100, .3);
  	                div.style.display = 'block';
  	             }
        div.endf   = function ()
  	             {
  	                tw.continueTo(0, .3);
  	                tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	             }
        }
 }
 function init_skypeembedhovershow()
 {
   var div      = document.getElementById('skypeembedhovershow');
   if(div)
   {
   var subdiv   = div.childNodes[0];
   var tw  = new Tween(subdiv.style, 'left', Tween.regularEaseInOut, 67, 0, 1, 'px');
   var tw2 = new Tween(div.style, 'width', Tween.regularEaseInOut, 0, 67, 1, 'px');
   div.startf = function ()
  	        {
  	           subdiv.style.left = '67px';
  	           div.style.width='0px';
                   div.style.overflow = 'hidden';
  	           div.style.display = 'block';
  	           tw.continueTo(0, 1);
  	           tw2.continueTo(67, 1);
  	           tw.onMotionFinished = function(){ div.style.overflow = 'visible'; tw.onMotionFinished = undefined; }
  	        }
   div.endf  = function ()
  	       { 
                   div.style.overflow = 'hidden';
  	           tw.continueTo(67, 1);
  	           tw2.continueTo(0, 1);
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	       }
   }
}

function init_tweens()
{
 init_skypeembedhovershow();
 init_skypeembedhovershow();
}
