//**********************************************************************************************************************
/**
* COMPANY: Zipline Interactive
* EMAIL: infon@gozipline.com
* PHONE: 509-321-2849
* DESCRIPTION: This document contains programming required for the website templates.  Requires the jQuery library.
*/
//***********************************************************************************************************************


//***********************************************************************************************************************
//ON DOCUMENT READY FUNCTIONS
//***********************************************************************************************************************
$(function() 
{
	$.ajax(
	{
		url: 'index.php',
		type: 'POST',
		data: 'action=get_staff_applicants_entries',
		success:function(response)
		{
			$('#ajax_target_after').after(response);
		}
	});
});


