<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package WordPress
* @subpackage Starkers
* @since Starkers 3.0
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php
/*
* Print the <title> tag based on what is being viewed.
* We filter the output of wp_title() a bit -- see
* twentyten_filter_wp_title() in functions.php.
*/
wp_title( '|', true, 'right' );
?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<!-- Custom links -->
<!-- <link rel="stylesheet" type="text/css" href="http://mitemiu.com/wp-content/themes/Mitemiu/main.css" > -->
<link rel="stylesheet" type="text/css" href="http://mitemiu.com/wp-content/themes/Mitemiu/fonts/aller/stylesheet.css" >
<script type='text/javascript' src='http://mitemiu.com/wp-content/themes/Mitemiu/jquery-1.5.min.js'></script>
<script type="text/javascript" src="http://mitemiu.com/wp-content/themes/Mitemiu/jquery.galleriffic.js"></script>
<script type='text/javascript' src='http://mitemiu.com/wp-content/themes/Mitemiu/mitemiu.js'></script>
<?php
/* We add some JavaScript to pages with the comment form
* to support sites with threaded comments (when in use).
*/
if ( is_singular() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' );
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<div id="container">
<div id="header">
<div id="logo">
<h1>
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
</h1>
</div>
<div id="access" role="navigation">
<?php /* Allow screen readers / text browsers to skip the navigation menu and get right to the good stuff */ ?>
<?php /* Our navigation menu. If one isn't filled out, wp_nav_menu falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is assigned, the menu with the lowest ID is used. */ ?>
<?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>
</div><!-- #access -->
</div>
<div id="doll-menu">
<ul id="fade">
<li>
<a href='http://mitemiu.com/cher' title='Cher' target=''>
<img class="menu-thumb" src="images/dolls/menu-thumbs/Cher.png" alt=""/>
</a>
</li>
<li>
<a href='http://mitemiu.com/kabuki' title='Kabuki' target=''>
<img class="menu-thumb" src="images/dolls/menu-thumbs/Kabuki.png" alt=""/>
</a>
</li>
<li>
<a href='http://mitemiu.com/bizzy' title='Bizzy' target=''>
<img class="menu-thumb" src="images/dolls/menu-thumbs/Bizzy.png" alt=""/>
</a>
</li>
<li>
<a href='http://mitemiu.com/magi' title='Magi' target=''>
<img class="menu-thumb" src="images/dolls/menu-thumbs/Magi.png" alt=""/>
</a>
</li>
<li>
<a href='http://mitemiu.com/piotr' title='Piotr' target=''>
<img class="menu-thumb" src="images/dolls/menu-thumbs/Piotr.png" alt=""/>
</a>
</li>
<li>
<a href='http://mitemiu.com/whitey' title='Whitey' target=''>
<img class="menu-thumb" src="images/dolls/menu-thumbs/Whitey.png" alt=""/>
</a>
</li>
</ul>
</div>