$('.mainContainer').on('click', '.calNav span', function(){
console.log('clicked cal');
setTimeout(
function()
{
console.log('cal timeout');
$('.scheduleRow .scheduleText a').each(function(){
var currentRowLink = $(this).attr('href');
var currentRowNewLink = '/flames' + currentRowLink;
$(this).attr('href', currentRowNewLink);
console.log(currentRowNewLink);
});
}, 2000);
});