$(document).ready(function() {
	var maxHeight = 220;
	$('.prod-example-list').find('li').each(function(i, el) {
		if ($(el).height() > maxHeight) {
			maxHeight = $(el).height();
		}
	});
	$('.prod-example-list').find('li').each(function(i, el) {
		$(el).height(maxHeight);
	});
	
	var current = 0;
	$.doTimeout(5000, function() {
		current = (current + 1) % 3;
		$('.t-nav li:eq(' + current + ') a').data("autoclick", true);
		$('.t-nav li:eq(' + current + ') a').trigger('click');
		return true;
	});
});

