The job will be run as close to the given time as possible, but may be run slightly later. As Chris suggested, the best thing to do is probably create a small shell script and schedule that instead:
#!/bin/sh
/path/to/job/one &
/path/to/job/two &
In this case I started them in the background to ensure they both run at or nearly at the same time, but depending on your system, your requirements, etc., you will have to adjust this to suit your needs.
Also note that on some systems */2 doesn't actually mean only times divisible by 2, but reoccur in steps equal to 2. So, if the job time matches a 1 when the job is initially started, it may run then every odd minute, as you're seeing, rather than every even one. You could try something like:
00-58/2
to force the job to start on even instances only, but whether and how this works is really dependent on your system, your version of the cron daemon, etc. To get more detailed help, you would have to supply this information :)