var t;
var defaultLinkIndex = -1;
var auto = 'on';

function timedCount()
{	
	$("div.top_container").hide();
	
	defaultLinkIndex = defaultLinkIndex + 1;	
	if (defaultLinkIndex == $("div.top_container").length) {
		defaultLinkIndex = 0;
	}
	//$("#hidTest").val(defaultLinkIndex);
	$("div.top_container").eq(defaultLinkIndex).fadeIn('slow');	
	t = setTimeout("timedCount()", 5000); //8000
}


jQuery(function($) {
	
	timedCount();
	
});

