 function init_friendshovershow()
 {
   var div      = document.getElementById('friendshovershow');
   if(div)
   {
   var tw  = new Tween(div.style, 'left', Tween.regularEaseInOut, 690, 481, .5, 'px');
   var tw2 = new Tween(div.style, 'top', Tween.regularEaseInOut, 41, 41, .5, 'px');
   div.startf = function ()
  	        {
  	           div.style.left='690px';
                   div.style.top='41px';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = undefined;
  	           tw.continueTo(481, .5);
  	           tw2.continueTo(41, .5);
  	        }         
   div.endf  = function ()
  	       {
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(690, .5);
  	           tw2.continueTo(41, .5);
  	       }
   }
} function init_graphicdesignhovershow()
 {
   var div      = document.getElementById('graphicdesignhovershow');
   if(div)
   {
   var tw  = new Tween(div.style, 'left', Tween.regularEaseInOut, 207, 451, .5, 'px');
   var tw2 = new Tween(div.style, 'top', Tween.regularEaseInOut, 41, 41, .5, 'px');
   div.startf = function ()
  	        {
  	           div.style.left='207px';
                   div.style.top='41px';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = undefined;
  	           tw.continueTo(451, .5);
  	           tw2.continueTo(41, .5);
  	        }         
   div.endf  = function ()
  	       {
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(207, .5);
  	           tw2.continueTo(41, .5);
  	       }
   }
} function init_elandesignshovershow()
 {
   var div      = document.getElementById('elandesignshovershow');
   if(div)
   {
   var tw  = new Tween(div.style, 'left', Tween.regularEaseInOut, 11, 275, .5, 'px');
   var tw2 = new Tween(div.style, 'top', Tween.regularEaseInOut, 41, 41, .5, 'px');
   div.startf = function ()
  	        {
  	           div.style.left='11px';
                   div.style.top='41px';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = undefined;
  	           tw.continueTo(275, .5);
  	           tw2.continueTo(41, .5);
  	        }         
   div.endf  = function ()
  	       {
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(11, .5);
  	           tw2.continueTo(41, .5);
  	       }
   }
}
function init_tweens()
{
 init_elandesignshovershow();
 init_graphicdesignhovershow();
 init_friendshovershow();
}
