tilt.attachEvent(window, "load", function() {
	var content = document.getElementById("vcalendar");
	if (content)
	{
		var divs = content.getElementsByTagName("div");
		for(var i = 0; i < divs.length; i++)
		{
			var div = divs[i];
			if (div.className.indexOf("vevent") == 0) {
				var icon = div.insertBefore(document.createElement("a"), div.firstChild);
				icon.className = "hcalendar-export";
				icon.title = "Export to your calendar";
				icon.href = "http://feeds.technorati.com/events/" + location;
				icon.innerHTML = "<img src=http://estrada.sdsmt.edu/assets/sdsmt/images/calendar-icon.gif border=0> Export this event to your calendar";
				break;
			}
		}
	}
});