// JavaScript Document

var mycontent=new Array()
    mycontent[0]='<img src="images/arrow.gif" width="9" height="9" />&nbsp;A Cancer?&nbsp;<img src="images/arrowout.gif" width="9" height="9" />'
    mycontent[1]='<img src="images/arrow.gif" width="9" height="9" />&nbsp;A Threat of Cancer?&nbsp;<img src="images/arrowout.gif" width="9" height="9" />'
    mycontent[2]='<img src="images/arrow.gif" width="9" height="9" />&nbsp;A New Way Anticarcinogenic!&nbsp;<img src="images/arrowout.gif" width="9" height="9" />'
    mycontent[3]='<img src="images/arrow.gif" width="9" height="9" />&nbsp;A Radical Synthesis of Science and Personal Experience!&nbsp;<img src="images/arrowout.gif" width="9" height="9" />'
	mycontent[4]='<img src="images/arrow.gif" width="9" height="9" />&nbsp;A New Way of Life for you!&nbsp;<img src="images/arrowout.gif" width="9" height="9" />'
	mycontent[5]='<img src="images/arrow.gif" width="9" height="9" />&nbsp;A Natural Cancer Therapy!&nbsp;<img src="images/arrowout.gif" width="9" height="9" />'
	mycontent[6]='<img src="images/arrow.gif" width="9" height="9" />&nbsp;Let us Stop the Cancer!&nbsp;<img src="images/arrowout.gif" width="9" height="9" />'

var i=0

function altercontentbanner(){
  if (document.all)
    bannerarea.innerHTML=mycontent[i];
  else if (document.getElementById){
    rng = document.createRange();
  el = document.getElementById("bannerarea");
  rng.setStartBefore(el);
  htmlFrag = rng.createContextualFragment(mycontent[i]);
  while (el.hasChildNodes()) el.removeChild(el.lastChild);
   el.appendChild(htmlFrag);}

  i=(i==mycontent.length-1)? 0 : i+1
  setTimeout("altercontentbanner()", 3000)
}

window.onload=altercontentbanner;
