
/**
 * Preload the iven image in temporary buffer, so
 * the browser got it cached
 **/
function imgPreload(file){
	var tmp = new Image();
	tmp.src = file;
}


