// ==UserScript==
// @name second Userscript
// @namespace seconduserscript.maggie
// @version 0.1
// @description fuckin with cnn
// @author maggie O'mahoney
// @match http://www.espn.com/*
// @grant none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
(function() {
'use strict';
var j =jQuery.noConflict();
j('h1').append(', I Fucking Love Sports!');
j('a').fadeOut();
})();