var resumeId="";
var fid="";
function doApply(f,e){
	//alert(e);
	resumeId = e;
	fid = f;
	$('#apply').trigger('click');
}

function makeApply(e){
$('#invitespan'+fid).html('已邀请');

	$.get("delivered.do?operate=applyForUser&id="+resumeId+"&favoriteid="+fid+"&pid="+e,function(){alert("邀请成功！");});
	TB_remove();
}

function doBathApply(e){
	resumeId="";
	$(":checkbox[name=positionId]").each(function(){
		if(this.checked){
			resumeId = resumeId+$(this).val()+",";
		}
	});
	$('#apply').trigger('click');
	
}



