// JavaScript Document
$(document).ready
(
 function()
 	{
		$.get('/news/wp-content/themes/kootaooma/cfm-widgets/footer.cfm','',function(data,statusText){$('#shell').append(data)});
		$.get('/news/wp-content/themes/kootaooma/cfm-widgets/right.cfm','',function(data,statusText){$('#right').append(data)});
		$.get('/news/wp-content/themes/kootaooma/cfm-widgets/left.cfm','',function(data,statusText){
																				   $('#left').append(data); 
																				   
																				   });
	}
 )