4 part preloader - 25% each

This has probably been asked before but I couldn’t find the answer: I am trying to have a preloader bar that works in four separate bits, such that the first bar shows the first 25% loading, the second bar shows 25%-50%… its probably not that hard to do, but I’m having trouble thinking through this logically. So, for one preloader:

bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent115;
this.loadText = Math.round(getPercent
100);
if (bytes_loaded == bytes_total) {
this.gotoAndPlay(67);
}

Btw, there is only one text output, so you can ignore the loadText bit. Am kinda mind boggled, so any help will be lapped up :wink:

Cheers - Insomniac