// ==UserScript==
// @name           deMoodify
// @namespace      Zikes
// @description    Lets you remove the Mood from your journal
// @include        http://my.deviantart.com/journal/*
// ==/UserScript==

// Get elements by xpath
function $x(xpath){
	var got=document.evaluate(xpath,document,null,null,null), result=[];
	while(next=got.iterateNext()) result.push(next);
	return result;
}

function demoodify(){
	$x('//input[@name="supermoodid"]')[0].value=0;
	$x('//input[@name="supermoodid"]/../span')[0].innerHTML='(no mood)';
	
	var img=$x('//input[@name="supermoodid"]/../img')[0];
	img.src='';
	img.alt='';
}

GM_registerMenuCommand("deMoodify Me", demoodify);