animInit_pe2demo = "";
animControlName_pe2demo = "pe2demo";
animCurrentFrame_pe2demo = 0;
animMaxNumFrames_pe2demo = 7;
var animFrameDelay_pe2demo = new Array(0, 4000, 4000, 3000, 1000, 2000, 3000, 5000);
animFadeDelay_pe2demo = .5; 
var animEffect1_pe2demo = new Array('Fade',   'Fade', 'Fade', 'DropOut', 'Appear', 'Shake', 'Shrink', 'Fade');
var animEffect2_pe2demo = new Array('Appear', 'Appear', 'Appear', 'Appear', 'Appear', 'Appear', 'Shake', 'Grow');
var animContent_pe2demo = new Array('',
   '<FONT style="COLOR: rgb(0,0,153)" size=7><SPAN style="FONT-FAMILY: impact; FONT-WEIGHT: bold">Why Be <SPAN style="COLOR: rgb(0,0,0)">Boring</SPAN> <IMG alt="" src="http://www.power-effects.com/images/ClassSleeper.gif"></SPAN><BR style="FONT-FAMILY: impact; FONT-WEIGHT: bold"><SPAN style="FONT-FAMILY: impact; FONT-WEIGHT: bold">When You Can Use this system up in less than a day and be getting testimonials as soon as tomorrow?</SPAN></FONT><BR>',
'<SPAN style="COLOR: rgb(51,0,153); FONT-SIZE: 38pt"><SPAN style="FONT-FAMILY: impact; FONT-WEIGHT: bold"><IMG alt=hands14 align=left src="http://www.golden-way-media.com/get-better-testimonials/images/hands14.gif">  <BR>Just <SPAN style="COLOR: rgb(204,0,0)">Point</SPAN> And <SPAN style="COLOR: rgb(204,0,0)">Click...<IMG alt=mouse2 align=right src="http://www.golden-way-media.com/get-better-testimonials/images/mouse2.gif"><BR></SPAN></SPAN></SPAN>',
'<FONT style="COLOR: rgb(0,0,153)" size=7><SPAN style="FONT-FAMILY: impact; FONT-WEIGHT: bold">...To <FONT color=#cc0000>Receive Testimonials You want for Any product<BR>or service</FONT><SPAN style="COLOR: rgb(204,0,0)">!<BR><IMG alt="" src="http://www.power-effects.com/images/gears7.gif"><BR></SPAN></SPAN></FONT>',
'<SPAN style="FONT-FAMILY: Impact; COLOR: rgb(211,18,39); FONT-SIZE: 48pt; FONT-WEIGHT: bold"><SPAN style="FONT-FAMILY: Arial,Helvetica,sans-serif; COLOR: black; FONT-SIZE: 12pt">Introducing...</SPAN><BR>Powerful Testimonial<BR><IMG border=0 src="http://www.power-effects.com/images/multi_lines.png"></SPAN>',
'<SPAN style="FONT-FAMILY: Impact; COLOR: rgb(211,18,39); FONT-SIZE: 48pt; FONT-WEIGHT: bold"><SPAN style="FONT-FAMILY: Arial,Helvetica,sans-serif; COLOR: black; FONT-SIZE: 12pt">Introducing...</SPAN><BR>Powerful Testimonial<BR><IMG border=0 src="http://www.power-effects.com/images/multi_lines.png"></SPAN>',
'<SPAN style="FONT-FAMILY: Impact; COLOR: rgb(211,18,39); FONT-SIZE: 48pt; FONT-WEIGHT: bold"><SPAN style="FONT-FAMILY: Arial,Helvetica,sans-serif; COLOR: black; FONT-SIZE: 12pt">Introducing...</SPAN><BR>Get Better Testimonials<BR><IMG border=0 src="http://www.power-effects.com/images/multi_lines.png"></SPAN>',
'<SPAN style="FONT-FAMILY: Impact; COLOR: midnightblue; FONT-SIZE: 32pt; FONT-WEIGHT: bold">"<SPAN style="FONT-FAMILY: Impact; COLOR: midnightblue; FONT-SIZE: 32pt; FONT-WEIGHT: bold">"Read On To Discover How This Amazing Product Can <SPAN style="TEXT-DECORATION: underline">Transform</SPAN> More Of Your <SPAN style="COLOR: rgb(0,0,0)">Bored</SPAN> Prospects Into Customers!"</SPAN></SPAN>');

animIE_pe2demo = (Prototype.Browser.IE);
animLoop_pe2demo = false;
   
document.write ('<div style="text-align: center; width: 650px; height: 350px; clip: auto; overflow: hidden;"><span id="pe2demo" ');
if (animInit_pe2demo != "")
   document.write (animInit_pe2demo + '="animCurrentFrame_pe2demo=1; selectAnim_pe2demo();">' + animContent_pe2demo[1]);
else
	document.write ('>');
document.write ('</span></div>');

if (animInit_pe2demo == "")
   selectAnim_pe2demo();   
   
function selectAnim_pe2demo() {
   if (animCurrentFrame_pe2demo < animMaxNumFrames_pe2demo || animLoop_pe2demo) {
      var sEffect = animEffect1_pe2demo[animCurrentFrame_pe2demo];
      if (animIE_pe2demo && sEffect == "Shrink") sEffect = "Fade";  // IE doesn't like "Shrink"
      if (sEffect != "None")
   	   var myresult = eval('new Effect.' + sEffect + '(animControlName_pe2demo, {duration:animFadeDelay_pe2demo});');
      animCurrentFrame_pe2demo += 1;
      if (animCurrentFrame_pe2demo > animMaxNumFrames_pe2demo) animCurrentFrame_pe2demo = 1;
      window.setTimeout('changeAnim_pe2demo()',animFadeDelay_pe2demo * 1000);
   }
}

function changeAnim_pe2demo() {
   document.getElementById(animControlName_pe2demo).innerHTML = animContent_pe2demo[animCurrentFrame_pe2demo];
   var sEffect = animEffect2_pe2demo[animCurrentFrame_pe2demo];
   if (sEffect != "None")
	   var myresult = eval('new Effect.' + sEffect + '(animControlName_pe2demo, {duration:animFadeDelay_pe2demo});');
   window.setTimeout('selectAnim_pe2demo()',animFrameDelay_pe2demo[animCurrentFrame_pe2demo]);
}
