animInit_SuperQuickVideos = "";
animControlName_SuperQuickVideos = "SuperQuickVideos";
animCurrentFrame_SuperQuickVideos = 0;
animMaxNumFrames_SuperQuickVideos = 3;
var animFrameDelay_SuperQuickVideos = new Array(0, 3000, 3000, 4000);
animFadeDelay_SuperQuickVideos = .5; 
var animEffect1_SuperQuickVideos = new Array('Fade',   'DropOut', 'DropOut', 'Fade');
var animEffect2_SuperQuickVideos = new Array('Appear', 'Appear', 'Appear', 'Appear');
var animContent_SuperQuickVideos = new Array('',
   '<img alt="10 BRAND NEW" src="http://bestdamnsale.com/products/62SuperQuickVideos/images/10NEW_1"><br>',
'<img alt="VIDEOS ADDED!" src="http://bestdamnsale.com/products/62SuperQuickVideos/images/10NEW_2"><br>',
'<img alt="" src="http://bestdamnsale.com/products/62SuperQuickVideos/images/10NEW_FULL"><br>');

animIE_SuperQuickVideos = (Prototype.Browser.IE);
animLoop_SuperQuickVideos = true;
   
document.write ('<div style="text-align: center; width: 560px; height: 195px; clip: auto; overflow: hidden;"><span id="SuperQuickVideos" ');
if (animInit_SuperQuickVideos != "")
   document.write (animInit_SuperQuickVideos + '="animCurrentFrame_SuperQuickVideos=1; selectAnim_SuperQuickVideos();">' + animContent_SuperQuickVideos[1]);
else
	document.write ('>');
document.write ('</span></div>');

if (animInit_SuperQuickVideos == "")
   selectAnim_SuperQuickVideos();   
   
function selectAnim_SuperQuickVideos() {
   if (animCurrentFrame_SuperQuickVideos < animMaxNumFrames_SuperQuickVideos || animLoop_SuperQuickVideos) {
      var sEffect = animEffect1_SuperQuickVideos[animCurrentFrame_SuperQuickVideos];
      if (animIE_SuperQuickVideos && sEffect == "Shrink") sEffect = "Fade";  // IE doesn't like "Shrink"
      if (sEffect != "None")
   	   var myresult = eval('new Effect.' + sEffect + '(animControlName_SuperQuickVideos, {duration:animFadeDelay_SuperQuickVideos});');
      animCurrentFrame_SuperQuickVideos += 1;
      if (animCurrentFrame_SuperQuickVideos > animMaxNumFrames_SuperQuickVideos) animCurrentFrame_SuperQuickVideos = 1;
      window.setTimeout('changeAnim_SuperQuickVideos()',animFadeDelay_SuperQuickVideos * 1000);
   }
}

function changeAnim_SuperQuickVideos() {
   document.getElementById(animControlName_SuperQuickVideos).innerHTML = animContent_SuperQuickVideos[animCurrentFrame_SuperQuickVideos];
   var sEffect = animEffect2_SuperQuickVideos[animCurrentFrame_SuperQuickVideos];
   if (sEffect != "None")
	   var myresult = eval('new Effect.' + sEffect + '(animControlName_SuperQuickVideos, {duration:animFadeDelay_SuperQuickVideos});');
   window.setTimeout('selectAnim_SuperQuickVideos()',animFrameDelay_SuperQuickVideos[animCurrentFrame_SuperQuickVideos]);
}
