last.fm slogan to title

By myfonj Last update May 14, 2007 — Installed 240 times. Daily Installs: 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
// ==UserScript==
// @name           last.fm slogan to title
// @namespace      html
// @description    adds slogan to page title
// @include        http://www.last.fm/*
// ==/UserScript==

if ( document.getElementById('slogan') ) {
 document.title += ' | ' + document.getElementById('slogan').innerHTML;
}