are you trying to get the path of execution to jump back to 0x00927826 + 5
OR
or is there a memory address stored at 0x00927826, which you read, then add 5 to, and jump there?
If the second, you can't add +5 BEFORE you read the pointer : P ..you'd be reading for it in the wrong location.
If the first, don't use [ ] on the line w/ the jump.
edit: ^^ was in a hurry and misread your code..for some reason I was thinking 'returnhere' was a label, not a variable. Since it's a variable, you do want to read it's contents.