Nothing loads to the pagefile.
You are just wasting ram and forcing the use of the pagefile as far as windows is concerned. I'm not sure if window's ram drives work the same as tmpfs in linux land but if they do, and it should, then ram drives are "Potential" capacities. Meaning, you can create a 1GB ram drive, but it wont use 1GB of ram unless you move 1GB of files onto it. By putting the pagefile on your ramdisk, you have removed however large your pagefile is from your usable ram pool. This would then increase the potential of the pagefile being used.
Not only is it slower to access data from swap located in ram rather than just directly in non-swapped ram like it would be if the pagefile wasn't taking up ram space, but you are removing potential space for temporary / cache files that you now either have to let write to disk or force you to increase the size of the ramdisk and further limit the usable ram in your system.
The pagefile will get stuff written to it even if you're not using all your ram because often cached data is re-retrieved faster from a single point (pagefile) than from random places on the disk. Also, pushing un-used apps to swap during idle time is less costly than having to push them there during high contention times. But these are preventive measures you dont need if you dont care about re-retrieving cache data from disk or if you never come close to using all of your ram (2GB is really hard to fill up under normal use).
So, get rid of the pagefile altogether, it's not needed if you have 2GB of ram. You can keep the ramdrive at 700+MB (assuming this is a potential capacity and it only takes up as much ram as needed as you write data to it). Make it the windows Temp dir (not that anything really uses it) and see if you can't make windows use it for it's windows updates downloads, as well as your download dir and cache for your web browser. Basically, anything you dont care about losing during a reboot.
If ram drives are pre-allocated and actually take up ram for however large they are in windows, then i suggest making them only as big as necessary and only put data that gets frequently written to it to minimize writes to your
ssd. possibly use a cheap usb thumb drive for the downloads dir in that case.