var text1 = new Array();
text1[0]="<a href=http://www.eeeblog.net/a/ target=_blank>ネットで高収入ゲットー！</a>";
text1[1]="<a href=http://www.eeeblog.net/a/cyber/ target=_blank>CYBER-ADは出会い系サイトのアフィリエイト・サービス</a>";


var n1 = Math.floor(Math.random() * text1.length);
var ua1 = navigator.userAgent;
document.write('<STYLE><!--',
'.sys_font1 a{',
'text-decoration:underline;',
'color: #000000;',
'}',
'.sys_font1 a:hover{',
'text-decoration:underline;',
'}',
'#sys1{',
'background-color: threedhighlight;',
'border: 1px solid threedhighlight;',
'position:relative;',
'width: 100%;',
'height: 13;',
'}',
'--></STYLE>');

if((document.all) && (ua1.indexOf('Mac') == -1)){
  document.write('',
           '<div id="sys1" class="sys_font1"></div>');
  sys_bg1 = document.all.sys1.style;
  rotate1();
}else{
  document.write(text1[n1]);
}
function rotate1(){
  BgFade1(0xAA,0xBB,0x00,0xFF,0xFF,0xFF,10);
  document.all.sys1.innerHTML = text1[n1];
  if(n1 < text1.length - 1){n1 ++;}else{n1 = 0;}
  setTimeout("rotate1()",6000);
}
function BgFade1(red1,grn1,blu1,red2,grn2,blu2,steps){
  sred = red1;
  sgrn = grn1;
  sblu = blu1;
  ered = red2;
  egrn = grn2;
  eblu = blu2;
  inc1 = steps;
  step1 = 0;
  RunFader1();
}
function RunFader1(){
  var epct = step1 / inc1;
  var spct = 1 - epct;
  sys_bg1.backgroundColor = Math.floor(sred*spct+ered*epct)*256*256 + Math.floor(sgrn*spct+egrn*epct)*256 + Math.floor(sblu*spct+eblu*epct);
  if(step1 < inc1){ setTimeout("RunFader1()",50);}else{sys_bg1.backgroundColor="threedhighlight";}
  step1 ++;
}
