It's not easily possible to center the logo - thus we'll take the second alternative. Open up header.php and place your image code after following line:
<div class='container'>
eg (if you want to add two images) use following code:
<div class='container'>
<img src="http://my-image-url" alt="Alt Text" title="Title Text" style="float:right;" />
<img src="http://my-image-url" alt="Alt Text" title="Title Text" style="float:right;" />
Replace the src values with the url to your images, and the alt/title values with any custom text. Maybe you need to push down the main menu a bit - you can use following css code for this task. Add it to css/custom.css and adjust the top value if required:
.main_menu {
top: 47px;
}