// ==UserScript==
// @name dagbladet.no - Repair broken feed URLs
// @author Arve Bersvendsen 
// @namespace http://virtuelvis.com/
// @description  Fixes broken URLs from the newsfeeds of the
//			dagbladet.no website

// @ujs:category site: fixes
// @ujs:published 2005-05-21 22:07
// @ujs:modified 2005-09-19 09:19
// @ujs:documentation http://userjs.org/scripts/site/fixes/dagbladet-no-feedfix 
// @ujs:download http://userjs.org/scripts/download/site/fixes/dagbladet-no-feedfix.js
// ==/UserScript==


/* 
 * This script is granted to the Public Domain
 */

if (location.host.indexOf("www.dagbladet.nohttp") != -1) {
  location.href = location.href.replace("http://www.dagbladet.nohttp//","http://");
}
