// ==UserScript==
// @name Google Custom Navigation
// @namespace Michael-Bach.ch/Greasemonkey
// @description This script customizes the navigation at the top left corner of the google homepage.
// @include http://www.google.tld/*
// @include http://images.google.tld/*
// @include http://maps.google.tld/*
// ==/UserScript==

var links = document.getElementById("gbar").getElementsByTagName("a");

for(var i=0; i<links.length; i++){
	//links[i].innerHTML = "Aha?";
	switch(links[i].innerHTML){
	case "Videos":
		links[i].innerHTML = "Youtube";
		links[i].href = "http://www.youtube.com";
		break;
	case "News":
		links[i].innerHTML = "Reader";
		links[i].href = "http://www.google.de/reader/?hl=de&tab=wy&authuser=0";
		break;
	case "Shopping":
		links[i].innerHTML = "Docs";
		links[i].href = "http://docs.google.com/?hl=de&tab=wo&authuser=0";
		break;
	}
}