$(document).ready( function() {
	
	$.preload(oFiles, {
		onRequest: updateLoader,
		onFinish: endLoader
	});
});


function endLoader() {
	document.location.replace(LINKROOT+'/home')
}

function updateLoader(d) {
	$('#pct').html( (d.index + 1)+'/'+d.total);
}
