function getLatestUpdates() {
	/*Element.update('spnJobUpdates', 'Loading...');

	new Ajax.Request('/find-jobs/getlatest',{
		method: 'post',
		onSuccess: function(a_objResponse) {
			Element.update('spnJobUpdates', a_objResponse.responseText);
		}
	});*/
	
	$('#spnJobUpdates').html('Loading...');
	
	$.get('/find-jobs/getlatest', null, function(a_objResponse){
		$('#spnJobUpdates').html(a_objResponse);
	}, 'html');
}

$(document).ready(function() {
	$('a[title]').qtip({
		position: {
		   my: 'bottom center',
		   at: 'top center'
		},					  
	});
});
