($(".monthButtonLabel").length >0)
{
setEventBackground("race","orange");
setEventBackground("meeting","LimeGreen");
setEventBackground("conference","#FF4500");
setEventBackground("boatshow","#9D00D3");
setEventBackground("volunteers","#5A141C");
}
function setEventBackground(tagName, bgcolor)
{
$( "a[data-tags*='" + tagName + "']")
.parent().css("background-color", bgcolor).parent().find(".eventTime").parent().css("background-color", bgcolor);
}
setEventBackground("holiday", "#FF336E");
}