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