function loadHotJob() {
	$.post("/jobs/act_ajaxHotJob.cfm",{},
		function (responseText,statusMessage)
		{
			$("#hotjobcontent").html(responseText);
		});
	} <!-- loadHotJob -->
	
	
function loadTempTop5() {
	$.post("/jobs/act_ajaxTop5.cfm",
		{ recordtype: "temporary" },
		function (responseText,statusMessage)
		{
			$("#tempTop5").html(responseText);
		});
	} <!-- loadHotJob -->