Trennlinie mit Text in der Mitte

Original: http://4ppletree.me/blog/trennlinie-mit-text-in-der-mitte/

HTML

<div class="separator">
    <span>Absolut geniale Headline</span>
</div>

CSS

.separator {
    width: 100%;
    border-bottom: 1px solid #60636a;
    text-align: center;
    height: 18px;
    margin-bottom: 15px;
}
.separator span {
    line-height: 15px;
    padding: 0 10px;
    background: white; /* Farbe des Elements darunter */
    display: inline-block;
    margin-top: 10px;
    color: #60636a;
}

/* styling basics */
html {padding: 20px 0; background-color: #efefef;}
body {width: 80%; padding: 40px; margin: 0 auto; background: #fff; box-shadow: 1px 1px 5px rgba(0,0,0,0.5); font-family: Verdana, Arial, sans-serif; font-size: 14px;}

JavaScript

jg.drawLine(0, 11, 40, 0);