﻿/*
* Author: simon.gilhooly
*/
var atom14 =  uk.co.atom14;

function loadDynamic(){

	getMyBlogFeed("367689580224828862");
	
	// populates the calendar section with upcoming events by reading a Google calendar
	atom14.calId = "colchestercricket.org_885rvg3vfa584f4ep1od1mog1k@group.calendar.google.com";
	atom14.targetDiv = "calendar";
	atom14.googleCal();
}

// utility functions ....
function showDiv(divId){
	document.getElementById(divId).className = "show";
}
function hideDiv(divId){
	document.getElementById(divId).className = "hide";
}
