The general advice is this: Don't invent a new cryptosystem if you actually care about security; or if you must, at least get it publicly peer reviewed by serious cryptography researchers.
That said, the best I've got is that this sounds like you're treating RSA as a kind of block cipher, and so you probably want to use a standard block cipher mode. The obvious thing to do, of just encrypting each block separately with the same key, sounds equivalent to Electronic Code-Book (ECB) mode, which is not secure. Perhaps you can use one of the better modes like CBC with RSA?
Since we're ignoring the practical performance problems, I'll point out a different practical consideration. The input m to RSA must be in the range 0<=m<n, where n is one of the public key parameters. Since the value of n must be the product of two distinct primes, it can never be a power of 2, so dividing your larger message into chunks that fit in the input to RSA is a little confusing.
Also, don't forget about padding each message you encrypt with RSA.
In short: Don't do it for a real project, but it's a neat thought experiment. :-)