Colorado Roots Virtual Guide

You will be redirected to the Colorado Roots Virtual Guide in .

If you are not automatically redirected, you can access the virtual guide here.

// Redirect Script
;(function($){
var startTime = 4;
var unit = ' seconds';
var countdown = setInterval(function(){
startTime--;
if (startTime === 1) {
unit = ' second';
} else {
unit = ' seconds';
}
$('#countdown').html(startTime + unit);
if (startTime === 0) {
clearInterval(countdown);
}
}, 1000);

setTimeout(function(){
window.open('http://digital.milespartnership.com/publication?i=487218', '_blank');
}, 4000);
})(jQuery);

Updated: January 7, 2022