Hi Tom,
You can change layout files in this directory: /templates/ja_hotel/tpls/ , for example, you're using default layout, you edit this file:
/templates/ja_hotel/tpls/default.php
Under the < head> tag, add this:
<?php
$app = JFactory::getApplication();
$this->setTitle( $this->getTitle() . ' - ' . $app->getCfg( 'sitename' ) );
?>
This will help to override that page title and you can change the dash (in above code) to what you wish.