// ==UserScript==
// @name          Colourful Scrap Flooder
// @namespace http://cyberneticz.blogspot.com
// @description	Floods the scrapbook of friends and self with real sentences
// @include        http://www.orkut.com/*
// ==/UserScript==
window.addEventListener("load", function(e) {
if(document.location.href.indexOf("Scrapbook.aspx")>=0)
{
	var colours = new Array("aqua","blue","fuchsia","gold","gray","green","lime","maroon","navy","olive","orange","pink","purple","red","silver","teal","violet","yellow");
	if(GM_getValue("reset",true))
	{
		GM_setValue("scrap",prompt("Please enter the scrap which you want to send in a colourful way", "Colours add fun to scrapflooder!!"));
		GM_setValue("reset",false);
	}
	var scrap=GM_getValue("scrap");
	var colour=colours[GM_getValue("counter",0)];
	GM_setValue("counter",(GM_getValue("counter",0)+1)%colours.length);	
	document.getElementById('scrapText').value="[b]["+colour+"]"+scrap+"[/"+colour+"][/b]";
	document.location.href="javascript:submitForm(document.getElementsByTagName('tr').item(15),'submit','');";
}
if(document.location.href.indexOf("Home.aspx")>=0)
{
	GM_setValue("counter",0);
	GM_setValue("reset",true);
}
}, false);
