<?php
/**
 * The Header Top widget areas.
 *
 * @package Catch Themes
 * @subpackage Catch Kathmandu
 * @since Catch Kathmandu 1.0
 */
?>
<?php 
/** 
 * catchkathmandu_before_header_top hook
 */
do_action( 'catchkathmandu_before_header_top' ); ?> 
<?php 
if ( is_active_sidebar( 'sidebar-header-top' ) ) {	?>
    <div id="header-top" class="header-sidebar widget-area">
    	<div class="container">
    		<?php dynamic_sidebar( 'sidebar-header-top' ); ?>
        </div>
    </div><!-- #header-right .widget-area -->
<?php 
}
/** 
 * catchkathmandu_after_header_top hook
 */
do_action( 'catchkathmandu_after_header_top' );