function getContent (template, destination ) {
	$.postJSON("services/json/contentService.cfc?returnFormat=json&method=getContent",{ templatePath: template},function(json) {
		destination.html(json.HTML);
	});
}

