
var tmp=document.getElementById('for_news').innerHTML;
document.getElementById('rightNav').innerHTML=tmp;

if(document.getElementById('id_google1_loader') && document.getElementById('id_google1')) {
  var tmp=document.getElementById('id_google1_loader').innerHTML;
  document.getElementById('id_google1').innerHTML=tmp;
}

bROwSEr=document.getElementById('id_rightColumn').filters? "ie" : typeof document.getElementById('id_rightColumn').style.MozOpacity=="string"? "mozilla" : "";
multiplier=document.getElementById('id_rightColumn').filters? 100 : typeof document.getElementById('id_rightColumn').style.MozOpacity=="string"? 1:"";

var currentOpacity=0;
var cx=0;
fadein();

function fadein() {
  tmp=document.getElementById('id_rightColumn');
  if(bROwSEr=="mozilla") {
    opacity1=parseFloat(document.getElementById('id_rightColumn').style.MozOpacity);
  }
  else if(bROwSEr=="ie") {
    opacity1=parseFloat(document.getElementById('id_rightColumn').filters.alpha.opacity);
  }
  opacity1+=0.1*multiplier;




  if(bROwSEr=="mozilla")
  {
    document.getElementById('id_rightColumn').style.MozOpacity=opacity1;
  }
  else if(bROwSEr=="ie")
  {
    document.getElementById('id_rightColumn').filters.alpha.opacity=opacity1;
  }
  //document.getElementById('id_rightColumn').filters.alpha.opacity=opacity;
  cx++;
  if(cx<10) setTimeout('fadein()', 70);
  //alert(cx);
}