function jobselect(id) {
	var total = '3'
	otherid = total - id;
	if ($('careers_job_description'+id).style.display == "none")
	{
		$('careers_job_description'+id).style.display = "block";
		$('careers_job_description'+otherid).style.display = "none";
		$('careers_job_link'+id).className = "jobselected";
		$('careers_job_link'+otherid).className = "";
	}
	else
	{
		$('careers_job_description'+id).style.display = "none";
		$('careers_job_description'+otherid).style.display = "none";
		$('careers_job_link'+id).className = "";
		$('careers_job_link'+otherid).className = "";
	}
}

function careers_confirm() {
	$('careers_confirm').style.display = "block";
	$('careers_form').style.display = "none";
}

function send_career()
{
	var req = new AJAX.Request('contact.php',
		{
			method: 'FILE',
			form: $('career_form'),
			parameters: ['action=career'],
			onComplete : function(receivedResponse) {eval(receivedResponse)}
		}			
	);
	
	return false;
}
