function reflexhover(a)
{
 if ( document.getElementById ) {
   var d = document.getElementById("rxhov");
   if ( d )
   {
     isIE6 = navigator.userAgent.toLowerCase().indexOf('msie 6') != -1;
     if ( isIE6 ) {
       d.style.marginLeft = rfx_x[a]+'px';
       d.style.marginTop  = rfx_y[a]+3+'px';
     }else{
       d.style.marginLeft = rfx_x[a]+'px';
       d.style.marginTop  = rfx_y[a]+'px';
    }
     d.style.width           = rfx_w[a]+'px';
     d.style.backgroundColor = rfx_c[a];
   }
 }
}
function reflexout()
{
 if ( document.getElementById ) {
   var d = document.getElementById("rxhov");
   if ( d )
   {
     d.style.marginLeft = 0+'px';
     d.style.width      = 0+'px';
   }
 }
}
                        