<meta name="author" content="">
    
    <meta name="viewport" content="width=device-width">

    <!-- Place favicon.ico and apple-touch-icon.png in the root directory -->

    <?php 
versioned_stylesheet($GLOBALS["TEMPLATE_RELATIVE_URL"] . "html5-boilerplate/css/normalize.css");
?>
    <?php 
versioned_stylesheet($GLOBALS["TEMPLATE_RELATIVE_URL"] . "html5-boilerplate/css/main.css");
?>
    
    <!-- Wordpress Templates require a style.css in theme root directory -->
    <?php 
versioned_stylesheet($GLOBALS["TEMPLATE_RELATIVE_URL"] . "style.css");
?>
    
    <!-- All JavaScript at the bottom, except for Modernizr which enables HTML5 elements & feature detects -->
    <?php 
versioned_javascript($GLOBALS["TEMPLATE_RELATIVE_URL"] . "html5-boilerplate/js/vendor/modernizr-2.6.1.min.js");
?>

    <!-- Wordpress Head Items -->
    <link rel="pingback" href="<?php 
bloginfo('pingback_url');
?>
" />

    <?php 
wp_head();
</title>
  
  <meta name="viewport" content="width=device-width" />

  <?php 
versioned_stylesheet($GLOBALS["TEMPLATE_RELATIVE_URL"] . "html5-boilerplate/css/normalize.css");
?>

  <?php 
versioned_stylesheet($GLOBALS["TEMPLATE_RELATIVE_URL"] . "compass/stylesheets/screen.css");
?>
  <?php 
versioned_stylesheet($GLOBALS["TEMPLATE_RELATIVE_URL"] . "compass/stylesheets/overrides.css");
?>
  <?php 
versioned_stylesheet($GLOBALS["TEMPLATE_RELATIVE_URL"] . "compass/stylesheets/plugin_contactform7.css");
?>

  <script charset="utf-8" src="http://use.edgefonts.net/poiret-one.js"></script>
  <script charset="utf-8" src="http://use.edgefonts.net/m-1m.js"></script>
  <script charset="utf-8" src="http://use.edgefonts.net/open-sans.js"></script> 

  <link rel="pingback" href="<?php 
bloginfo('pingback_url');
?>
" />
  <link rel="shortcut icon" href="<?php 
echo $GLOBALS["TEMPLATE_RELATIVE_URL"] . "images/favicon.png";
?>
" type="image/x-icon" />
  <style charset="utf-8">
  maximum-scale = 1.0 retains dimensions instead of zooming in if page width < device width
  -->
  <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">

  <!-- Place favicon.ico and apple-touch-icon.png in the root of your domain and delete these references -->
  <link rel="shortcut icon" href="/favicon.ico">
  <link rel="apple-touch-icon" href="/apple-touch-icon.png">

  <!-- CSS : implied media="all" -->
  <?php 
versioned_stylesheet($GLOBALS["TEMPLATE_RELATIVE_URL"] . "html5-boilerplate/css/style.css");
?>

  <!-- For the less-enabled mobile browsers like Opera Mini -->
  <?php 
versioned_stylesheet($GLOBALS["TEMPLATE_RELATIVE_URL"] . "html5-boilerplate/css/handheld.css", 'media="handheld"');
?>

  <!-- All JavaScript at the bottom, except for Modernizr which enables HTML5 elements & feature detects -->
  <?php 
versioned_javascript($GLOBALS["TEMPLATE_RELATIVE_URL"] . "html5-boilerplate/js/modernizr-1.5.min.js");
?>

  <!-- Wordpress Head Items -->
  <link rel="pingback" href="<?php 
bloginfo('pingback_url');
?>
" />

  <?php 
wp_head();
/**
 * Displays the 'omega-slider' sidebar slider
 *
 */
function omega_slider()
{
    //reasons to fail
    if (!function_exists('twc_initialize')) {
        _e('<p>Omega Slider requires the <a href="http://www.totalwidgetcontrol.com">Total Widget Control</a> Plugin.</p>');
        return false;
    }
    if (!function_exists('dynamic_sidebar')) {
        return false;
    }
    if (!($slides = twc_get_sidebar('omega-slider'))) {
        return false;
    }
    $slider = versioned_stylesheet('slider/css/omega-slider.css') . '<div id="omega-slider" class="omega-height omega-width">' . '<div id="omega-left" class="omega-height" style="display:none;"><span>&lt;</span></div>' . '<div id="omega-inside" class="omega-height omega-width" style="display:none;">' . '<div id="omega-insider" class="omega-height">' . $slides . '</div>' . '</div>' . '<div id="omega-right" class="omega-height" style="display:none;"><span>&gt;</span></div>' . '</div>' . versioned_javascript('slider/js/omega-slider.js');
    switch ($omega_slider_theme = get_option('omega-slider-theme', 'default')) {
        default:
            echo versioned_stylesheet('slider/css/themes/default/default.css');
            break;
    }
    echo $slider;
}