IEをHTML5に対応させる。

やっぱりプラウザの困ったちゃんであるインターネットエクスプローラー
HTML5を対応させる記述。
以下のjavascriptコードとstylesheetコードをhead内に記述。

<!--[if lte IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lte IE 9]>
<script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]-->
<style>
  article, aside, dialog, figure, footer, header,
  hgroup, menu, nav, section { display: block; }
</style>