 function init_spacefingerhovershowcopy()
 {
   var div      = document.getElementById('spacefingerhovershowcopy');
   if(div)
   {
   var tw  = new Tween(div.style, 'left', Tween.regularEaseInOut, -1795, 0, .3, 'px');
   var tw2 = new Tween(div.style, 'top', Tween.regularEaseInOut, -221, 300, .3, 'px');
   div.startf = function ()
  	        {
  	           div.style.left='-1795px';
                   div.style.top='-221px';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = undefined;
  	           tw.continueTo(0, .3);
  	           tw2.continueTo(300, .3);
  	        }
   div.endf  = function ()
               {
                 div.style.display = 'none';
                 tw.rewind();
                 tw2.rewind();
               }
   }
} function init_spacefingerhovershowmask()
 {
   var div      = document.getElementById('spacefingerhovershowmask');
   if(div)
   {
   var tw  = new Tween(div.style, 'left', Tween.regularEaseInOut, -1795, 0, .3, 'px');
   var tw2 = new Tween(div.style, 'top', Tween.regularEaseInOut, -221, 306, .3, 'px');
   div.startf = function ()
  	        {
  	           div.style.left='-1795px';
                   div.style.top='-221px';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = undefined;
  	           tw.continueTo(0, .3);
  	           tw2.continueTo(306, .3);
  	        }
   div.endf  = function ()
               {
                 div.style.display = 'none';
                 tw.rewind();
                 tw2.rewind();
               }
   }
} function init_witchhovershowmask()
 {
 	var div      = document.getElementById('witchhovershowmask');
        if(div)
        {
 	var tw = new OpacityTween(div,Tween.regularEaseInOut,0,100,2);
 	div.startf = function ()
  	             {
                        div.style.overflow = 'visible';
  	                tw.onMotionFinished = undefined;
  	                tw.continueTo(100, 2);
  	                div.style.display = 'block';
                        
  	             }
        div.endf   = function ()
  	             {
                        tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	                tw.continueTo(0, 2);
  	             }
        }
 }
 function init_witchhovershow()
 {
 	var div      = document.getElementById('witchhovershow');
        if(div)
        {
 	var tw = new OpacityTween(div,Tween.regularEaseInOut,0,100,2);
 	div.startf = function ()
  	             {
                        div.style.overflow = 'visible';
  	                tw.onMotionFinished = undefined;
  	                tw.continueTo(100, 2);
  	                div.style.display = 'block';
                        
  	             }
        div.endf   = function ()
  	             {
                        tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	                tw.continueTo(0, 2);
  	             }
        }
 }

function init_tweens()
{
 init_witchhovershow();
 init_witchhovershowmask();
 init_spacefingerhovershowmask();
 init_spacefingerhovershowcopy();
}
