﻿// JavaScript File
// By: webCommotion.com

function advance_topTenShow(delay) {
    return (function() {
        //new Effect.Fade("reason"+topTenShow.currentItem+"DIV");
        new Effect.Fade(topTenShow.elemID_reason_stem+topTenShow.currentItem);
        
        
        
        //new Effect.BlindDown("reason"+topTenShow.currentItem+"DIV");
      	//setTimeout("new Effect.Fade('" + "reason"+topTenShow.currentItem+"DIV" + "');", 1000);

        if (topTenShow.currentItem <= 1) {
            topTenShow.currentItem = topTenShow.itemCount;
        } else {
            topTenShow.currentItem -= 1;
        }

      	//setTimeout("new Effect.Appear('" + "reason"+topTenShow.currentItem+"DIV" + "');", 1000);
      	setTimeout("new Effect.Appear('"+topTenShow.elemID_reason_stem+topTenShow.currentItem+"');", 1000);
      	//new Effect.BlindDown("reason"+topTenShow.currentItem+"DIV");
      	
        
        setTimeout(advance_topTenShow(delay), delay + 1000);
    })
}

var topTenShow = {
	elemID_main : "topTenContainer",
	elemID_heading : "topTenH1",
	elemID_content : "topTenContentDIV",
	elemID_reason_stem : "topTenDIV_",
	displayInterval:10000,
	currentItem : 10,
    itemCount : 10,
   	start: function() {
        setTimeout(advance_topTenShow(this.displayInterval), this.displayInterval);
    }
}

topTenShow.start();
