 function init_coldhovershow()
 {
   var div      = document.getElementById('coldhovershow');
   if(div)
   {
   var tw = new Tween(div.style, 'width', Tween.regularEaseInOut, 0, 1022, 2, 'px');
   div.startf = function ()
  	        {
  	           div.style.width='0px';
                   div.style.overflow = 'hidden';
  	           div.style.display = 'block';
  	           tw.onMotionFinished = function(){ div.style.overflow = 'visible'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(1022, 2);
  	        }
   div.endf  = function ()
  	       {
                   div.style.overflow = 'hidden';
  	           tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	           tw.continueTo(0, 2);
  	       }
   }
}
 function init_i3256hothovershow()
 {
   var div      = document.getElementById('i3256hothovershow');
   if(div)
   {
   var subdiv   = div.childNodes[0];
   var tw  = new Tween(div.style, 'height', Tween.regularEaseInOut, 0, 620, 2, 'px');
   var tw2 = new Tween(div.style, 'top', Tween.regularEaseInOut, 620, 0, 2, 'px');
   var tw3 = new Tween(subdiv.style, 'top', Tween.regularEaseInOut, -620, 0, 2, 'px');
   div.startf = function ()
  	        {
                   div.style.height = '0px';
                   div.style.top='620px';
                   div.style.overflow = 'hidden';
                   div.style.display = 'block';
                   subdiv.style.top = '-620px';
                   tw.onMotionFinished = function(){ div.style.overflow = 'visible'; tw.onMotionFinished = undefined; }
                   tw.continueTo(620, 2);
                   tw2.continueTo(0, 2);
                   tw3.continueTo(0, 2);
  	        }
   div.endf  = function ()
  	       { 
                   div.style.overflow = 'hidden';
                   tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
                   tw.continueTo(0, 2);
                   tw2.continueTo(620, 2);
                   tw3.continueTo(-620, 2);
  	       }
   }
}
 function init_i3293hothovershow()
 {
 	var div      = document.getElementById('i3293hothovershow');
        if(div)
        {
 	var tw = new OpacityTween(div,Tween.regularEaseInOut,0,100,.3);
 	div.startf = function ()
  	             {
                        div.style.overflow = 'visible';
  	                tw.onMotionFinished = undefined;
  	                tw.continueTo(100, .3);
  	                div.style.display = 'block';
                        
  	             }
        div.endf   = function ()
  	             {
                        tw.onMotionFinished = function(){ div.style.display = 'none'; tw.onMotionFinished = undefined; }
  	                tw.continueTo(0, .3);
  	             }
        }
 }
 function init_waterhovershow()
 {
 	var div      = document.getElementById('waterhovershow');
        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_onhovershow()
 {
 	var div      = document.getElementById('onhovershow');
        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_onhovershow();
 init_waterhovershow();
 init_i3293hothovershow();
 init_i3256hothovershow();
 init_coldhovershow();
}
