// ==UserScript==
// @name            Premium TV Sites Auto-Redirect
// @namespace       http://www.pete-b.co.uk/downloads/greasemonkey
// @description     Fixes Articles Page widths
// @include		http://*.premiumtv.co.uk/page/Welcome
// ==/UserScript==

(function() {
var url = (window.location+"");
window.location = url.substring(0, url.length-7)+"Home";
})();
