$(function(){ // wait for document to load
	$('#uploadJobFile').MultiFile({
	max: 3,
	accept: 'gif|png|jpg|tiff|mov|doc|docx|avi|flv|rar|zip|tar|sit|txt|rtf|pdf'
	});
	
	
	//name the files
	$jobForm = $('#freeform');
	$jobForm.submit(function () {
		$(":file").each(function(i){
			i++;
			$(this).attr('name',('file'+i));
		});
	});
	
	
	
 
});