/* <![CDATA[ */
jQuery(document).ready(function($) {
    $('#container h1').each(function() {
        var me = $(this),
            t = me.text().split(' ');
        me.html('<span class="firstword">' + t.shift() + '</span> ' + t.join(' '));
    });

});
/* ]]> */
