$(document).ready(function(){

	// the next two lines implement the rounded corners on the module blocks
	$('h1', '.module').wrap('<div class="moduleHeader"></div>').after('<div class="modHdrCont"><div class="icons"></div><div class="cap"></div></div>');
	$('.module').append('<div class="moduleFooter"><div class="cap"></div></div>');

	getDT();

	setInterval(function() {
		getDT();
	}, 10000);

	function getDT() {
		var rand = Math.floor(Math.random()*10000);
		$('#help .content').load('get.cfm?' + rand); 
	}

});