sgmod - replace logo

Replaces the SGM logo with the old one.

// ==UserScript==
// @name       sgmod - replace logo
// @namespace  woot
// @version    1.0
// @description Replaces the SGM logo with the old one.
// @match      http://www.seriousgmod.com/*
// @copyright  2013+, stackoverflow
// ==/UserScript==

$( document ).ready(function() {
     $('div[id="logo"] > div > a > img').attr({
       src: "http://i.imgur.com/8u2tpsu.png",
       style: "padding-right:20px"
     });
     $('div[id="logo"] > div').css("margin-left", "45%");
});