var news_img = new Array();
var news_txt = new Array();
// Enter the names of the images below
news_img[0]="/graphics/news/logo_wsj.gif";
news_img[1]="/graphics/news/logo_nyt.gif";
news_img[2]="/graphics/news/logo_pcworld.gif";
news_img[3]="/graphics/news/logo_pct.jpg";

news_txt[0]="\"[An ElephantDrive user] uses ElephantDrive.com to back up 10 gigabytes of music, hundreds of photos, and documents for work like PowerPoint presentations.\"<br><a href='http://online.wsj.com/article/SB117873752307397508.html' target=news>Full Story</a>";
news_txt[1]="\"PROTECTING the electronic records of your business has gotten easier and more affordable\"<br><a href='http://www.nytimes.com/2008/02/20/business/businessspecial2/20storage.html' target=news>Full Story</a>";
news_txt[2]="\"ElephantDrive.com offers an economical service for businesses (1TB of storage for $350 a year), including selective or automatic backups, encryption, file sharing, Web browser access, and multiple user accounts.\"<br><a href='http://www.pcworld.com/article/id,140026-c,storage/article.html' target=news>Full Story</a>";
news_txt[3]="\"[ElephantDrive Home Edition] is the best product for more advanced users because it offers a lot of control over backup preferences, but it does offer easy automatic backup, too.\"<BR><a href='/company/news_archives/pct_0408.aspx' target=news>Full Article</a>";

var news = 0;
var totalnews = news_img.length;

function cyclenews() {
  news++;
  if (news == totalnews) {
    news = 0;
  }
  
 document.getElementById("news_img").src=news_img[news];
 document.getElementById("news_txt").innerHTML = news_txt[news];
  // set the time below for length of image display
  // i.e., "4*1000" is 4 seconds
  setTimeout("cyclenews()", 8*1000);
}
window.onload=cyclenews;


