animInit_loveteca = "";
animControlName_loveteca = "loveteca";
animCurrentFrame_loveteca = 0;
animMaxNumFrames_loveteca = 2;
var animFrameDelay_loveteca = new Array(0, 3000, 3000);
animFadeDelay_loveteca = .5; 
var animEffect1_loveteca = new Array('Fade',   'SlideUp', 'Shake');
var animEffect2_loveteca = new Array('Appear', 'Appear', 'Appear');
var animContent_loveteca = new Array('',
   '<div style="border: 1px dashed rgb(99, 0, 0); padding: 0pt 0pt 5px; background-color: white; width: 165px; text-align: center;">  <p style="text-align: center;"><span style="font-weight: bold;">WE LOVE</span><br>  <a href="http://www.tecacentre.net/"><img src="http://www.tecacentre.net/images/love-teca2.jpg" alt="wish-girl-drink-drive.jpg" border="none"></a><br>  <a href="http://tecacentre.net">tecacentre.net</a>  <br>  <span style="font-weight: bold;">HAVE FUN WITH  <br>  US TODAY..!</span>  <br>  Grab THIS  <br>  <a href="http://tecacentre.net/wpress/2008/08/10/widget-code-we-love-teca-plus/">  code for your site. </a>  <br><br>  </div>',
'<div style="border: 1px dashed rgb(99, 0, 0); padding: 0pt 0pt 5px; background-color: white; width: 165px; text-align: center;">  <p style="text-align: center;"><span style="font-weight: bold;">WE LOVE</span><br>  <a href="http://www.tecacentre.net/"><img src="http://www.tecacentre.net/images/JNO-togs.png" alt="wish-girl-drink-drive.jpg" border="none"></a><br>  <a href="http://tecacentre.net">tecacentre.net</a>  <br>  <span style="font-weight: bold;">HAVE FUN WITH  <br>  US TODAY..!</span>  <br>  Grab THIS  <br>  <a href="http://tecacentre.net/wpress/2008/08/10/widget-code-we-love-teca-plus/">  code for your site. </a>  <br><br>  </div>');

animIE_loveteca = (Prototype.Browser.IE);
animLoop_loveteca = true;
   
document.write ('<div style="text-align: center; width: 169px; height: 266px; clip: auto; overflow: hidden;"><span id="loveteca" ');
if (animInit_loveteca != "")
   document.write (animInit_loveteca + '="animCurrentFrame_loveteca=1; selectAnim_loveteca();">' + animContent_loveteca[1]);
else
	document.write ('>');
document.write ('</span></div>');

if (animInit_loveteca == "")
   selectAnim_loveteca();   
   
function selectAnim_loveteca() {
   if (animCurrentFrame_loveteca < animMaxNumFrames_loveteca || animLoop_loveteca) {
      var sEffect = animEffect1_loveteca[animCurrentFrame_loveteca];
      if (animIE_loveteca && sEffect == "Shrink") sEffect = "Fade";  // IE doesn't like "Shrink"
      if (sEffect != "None")
   	   var myresult = eval('new Effect.' + sEffect + '(animControlName_loveteca, {duration:animFadeDelay_loveteca});');
      animCurrentFrame_loveteca += 1;
      if (animCurrentFrame_loveteca > animMaxNumFrames_loveteca) animCurrentFrame_loveteca = 1;
      window.setTimeout('changeAnim_loveteca()',animFadeDelay_loveteca * 1000);
   }
}

function changeAnim_loveteca() {
   document.getElementById(animControlName_loveteca).innerHTML = animContent_loveteca[animCurrentFrame_loveteca];
   var sEffect = animEffect2_loveteca[animCurrentFrame_loveteca];
   if (sEffect != "None")
	   var myresult = eval('new Effect.' + sEffect + '(animControlName_loveteca, {duration:animFadeDelay_loveteca});');
   window.setTimeout('selectAnim_loveteca()',animFrameDelay_loveteca[animCurrentFrame_loveteca]);
}
