/* Header Colours */

    $(document).ready(function()
    {

        $('#content h1').each(function() {
            var h = $(this).html();
            var index = h.indexOf(' ');
            if(index == -1) {
                index = h.length;
            }
            $(this).html('<span style="color:#223D56; font-weight:bold;">' + h.substring(0, index) + '</span>' + h.substring(index, h.length));
        });

    });

