// ==UserScript==
// @name           Title replacement
// @namespace      www.daddy.sk
// @description    Replaces a substrings in a page's title
// @include        *
// ==/UserScript==


substitutes = {

// Define substitute strings here:
// Comma separated pairs:
// "original":"modified"
// Case-sensitive

	"Google":"G",
	"Wikipedia, the free encyclopedia":"WP",
	"Moo":"MOO"

//  !!! Do notmodify below this line !!!
};

var pos;

for (key in substitutes){
	pos = top.document.title.indexOf(key);
	if(-1!=pos) {
		top.document.title = top.document.title.substring(0,pos) + substitutes[key] + top.document.title.substring(pos+key.length);
	}
}
