var t;
var defaultLinkIndex = -1;

function timedCount()
{	
	defaultLinkIndex = defaultLinkIndex + 1;	
	if (defaultLinkIndex == $("img.gallery_img").length) {
		defaultLinkIndex = 0;
	}

	//$("#thumb_gallery_images li").eq(defaultLinkIndex).trigger('click');	
	animate(defaultLinkIndex);
	t = setTimeout("timedCount()", 3000); //8000	
}

function stopCount()
{
	clearTimeout(t);
}


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


function animate(idx) 
{
	$("img.gallery_img").hide();	
	
	$("img.gallery_img").eq(idx).fadeIn('slow');
	
	var curAlt = $("img.gallery_img").eq(idx).attr('title'); // Getting img's alt
	
	$("#gallery_image_text_container div").hide();
	
	$("div." + curAlt).show();
}
