// ==UserScript==
// @name           blumenau-ungarble
// @namespace      hns
// @include        http://fm4.orf.at/*
// @include        http://chorherr.twoday.net/*
// ==/UserScript==

// Add jQuery
    var GM_JQ = document.createElement('script');
    GM_JQ.src = 'http://jquery.com/src/jquery-latest.js';
    GM_JQ.type = 'text/javascript';
    document.getElementsByTagName('head')[0].appendChild(GM_JQ);

// Check if jQuery's loaded
    function GM_wait() {
        if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait,100); }
    else { $ = unsafeWindow.jQuery; letsJQuery(); }
    }
    GM_wait();

// All your GM code must be inside this function
    function letsJQuery() {
        var story = $("div#story, div.storyContent");
        story.each(function(i) {
            var html = $(this).html();
            if (/<br/.test(html)) {
                $(this).html(html.replace(/<br\s*\/?>/g, "</p><p>"));
            }            
        });
    }


