function get_jobs() {
	if(document.getElementById('matching_jobs')) 	{ oStatus 	= document.getElementById('matching_jobs');	}else{ return false; }
	if(document.getElementById('srch-title')) 		{ oTitle	= document.getElementById('srch-title');	}else{ return false; }
	if(document.getElementById('srch-cat')) 		{ oCat		= document.getElementById('srch-cat'); 		}else{ return false; }
	if(document.getElementById('srch-loc'))			{ oLoc		= document.getElementById('srch-loc');		}else{ return false; }
	
	sTitle = oTitle.value;
	if(sTitle == 'Enter keyword here') { sTitle = ''; }
	
	// remove all content from the status indicator
	while(oStatus.hasChildNodes()){
		oStatus.removeChild(oStatus.lastChild);
	}

	// get our search string
	var sParams = 'title='+encodeURIComponent(sTitle)+'&cat='+encodeURIComponent(oCat.value)+'&loc='+encodeURIComponent(oLoc.value);
	var sURL = siteurl+'/count_jobs.php';

	add2Queue(sURL, sParams, true, 'matching_jobs');
}
