Ahh... You're sneaky. Editing your post while I was replying.

For the header, you can do one of 2 things...
1) Copy your original vBulletin header template and replace the code in your index_header template with that. You will then have to add $bburl in front of each link so that they will point to the right place.
2) If you want it to use your regular forums header, look in your myvbindex.php file for the following code:
PHP Code:
eval("\$index_header .= \"".gettemplate('index_header')."\";");
And replace it with
PHP Code:
eval("\$index_header .= \"".gettemplate('header')."\";");
Then you will also have to add $bburl in front of each link in your original header template to ensure the links will point to the right place. This will change it so it looks for your original vB header instead of the index_header template. If you do that, you should also look near the top of the myvbindex.php file for "index_header" in the $templatesused section. Replace that with just "header" to avoid adding an unnecessary query to that page. Then in your index template, look for "$index_header" and replace that with "$header".