$(document).ready(function () {
	$("#fileUpload").fileUpload({
		'uploader': '/components/uploadify/uploader.swf',
		'cancelImg': '/components/uploadify/cancel.png',
		'folder': '/upload/fotos/',
		'buttonImg': '/images/selecteer.jpg',
		'width':'220',
		'height':'30',
		'script': '/components/uploadify/upload.php',
		'multi': true,
		'simUploadLimit': 4,
		'onAllComplete' : allComplete
	});
});

function allComplete() {
	var email = $("#uploadEmail").val();
	location.href = '/?successfull=' + email;
}
