animInit_subhead = "";
animControlName_subhead = "subhead";
animCurrentFrame_subhead = 0;
animMaxNumFrames_subhead = 4;
var animFrameDelay_subhead = new Array(0, 10000, 10000, 10000, 10000);
animFadeDelay_subhead = .5; 
var animEffect1_subhead = new Array('Fade',   'Fade', 'Fade', 'Fade', 'Fade');
var animEffect2_subhead = new Array('Appear', 'Appear', 'Appear', 'Appear', 'Appear');
var animContent_subhead = new Array('',
'<span style="font-size: 16pt; color: #006699; font:Arial, Helvetica, sans-serif; font-weight:900">  That\'s Right -- Receive   <span style="color: #FF0000;">Huge $100 Commissions</span> for <BR>Each Person You Refer from Your New Web Site.  </span>',
'<span style="font-size: 16pt; color: #006699; font:Arial, Helvetica, sans-serif; font-weight:900">  I\'ve done ALL the hard work and testing for you...<BR>  and I\'ll GIVE you the Web Site... <span style="color: #FF0000;">for FREE!</span></span>',
'<span style="font-size: 16pt; color: #000000; font:Arial, Helvetica, sans-serif; font-weight:900">  <span style="color: #006699;">NOT a Course... </span><span style="color: #FF0000;">NO Studying Required!</span></span>',
'<span style="font-size: 16pt; color: #000000; font:Arial, Helvetica, sans-serif; font-weight:900">  Grab Your Share of the <span style="color: #FF0000;">$6.5 <u>BILLION</u> DOLLAR</span><BR>  <span style="color: #006699;">AFFILIATE MARKETING INDUSTRY.</span>  </span>');

animIE_subhead = (Prototype.Browser.IE);
animLoop_subhead = true;
   
document.write ('<div style="text-align: center; {{width}} {{height}} "><span id="subhead" ');
if (animInit_subhead != "")
   document.write (animInit_subhead + '="animCurrentFrame_subhead=1; selectAnim_subhead();">' + animContent_subhead[1]);
else
	document.write ('>');
document.write ('</span></div>');

if (animInit_subhead == "")
   selectAnim_subhead();   
   
function selectAnim_subhead() {
   if (animCurrentFrame_subhead < animMaxNumFrames_subhead || animLoop_subhead) {
      var sEffect = animEffect1_subhead[animCurrentFrame_subhead];
      if (animIE_subhead && sEffect == "Shrink") sEffect = "Fade";  // IE doesn't like "Shrink"
      if (sEffect != "None")
   	   var myresult = eval('new Effect.' + sEffect + '(animControlName_subhead, {duration:animFadeDelay_subhead});');
      animCurrentFrame_subhead += 1;
      if (animCurrentFrame_subhead > animMaxNumFrames_subhead) animCurrentFrame_subhead = 1;
      window.setTimeout('changeAnim_subhead()',animFadeDelay_subhead * 1000);
   }
}

function changeAnim_subhead() {
   document.getElementById(animControlName_subhead).innerHTML = animContent_subhead[animCurrentFrame_subhead];
   var sEffect = animEffect2_subhead[animCurrentFrame_subhead];
   if (sEffect != "None")
	   var myresult = eval('new Effect.' + sEffect + '(animControlName_subhead, {duration:animFadeDelay_subhead});');
   window.setTimeout('selectAnim_subhead()',animFrameDelay_subhead[animCurrentFrame_subhead]);
}
