function OverImage(img)
{
 document.getElementById(img).style.position = 'absolute';
 document.getElementById(img).style.right = '50%';
 document.getElementById(img).style.marginRight = '130px';
 document.getElementById(img).style.width = '200px';
 new Effect.Appear(img,{duration:0.5,fps:25,from:0.0,to:1.0});
}
function OutImage(img)
{
 document.getElementById(img).style.position = 'relative';
 document.getElementById(img).style.right = '0';
 document.getElementById(img).style.marginRight = '0';
 document.getElementById(img).style.width = '90px';
 new Effect.Appear(img,{duration:0.5,fps:25,from:0.0,to:1.0});
}

function OverImage2(img,zoom)
{
 var pos = YAHOO.util.Dom.getXY(img);
 var w = document.getElementById(img).offsetWidth;
 var h = document.getElementById(img).offsetHeight;
 document.getElementById('IMG_ROLLOVER').src = document.getElementById(img).src;
 document.getElementById('IMG_ROLLOVER').style.zIndex = 100;
 document.getElementById('IMG_ROLLOVER').style.width = w * zoom;
 document.getElementById('IMG_ROLLOVER').style.height = h * zoom;
 document.getElementById('IMG_ROLLOVER').style.display = 'block';
 YAHOO.util.Dom.setXY(document.getElementById('IMG_ROLLOVER'),[pos[0] + w + 1,pos[1]]);
}
function OutImage2()
{
 document.getElementById('IMG_ROLLOVER').style.display = 'none';
}
