// DeviantART - E-Llama-Nator v0.1
// Made By Luke Stevenson {http://lucanos.deviantart.com/}
// Distributed and Maintained via GMVC
// Last updated: 19 September 2006
//
// ==UserScript==
// @name              DeviantART - E-Llama-Nator
// @namespace         http://gmvc.lucanos.com/
// @description       (v0.1) Get rid of these bloody Llamas!
// @include           http://deviantart.com*
// @include           http://*.deviantart.com*
// ==/UserScript==

(function () {

	var emoticonLlamas;
	// Get All IMG Elements which have a "src" parameter of "http://e.deviantart.com/emoticons/l/llama.gif" - The Llama
	emoticonLlamas = document.evaluate('//img[@src="http://e.deviantart.com/emoticons/l/llama.gif"]',document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
	// alert (emoticonLlamas.snapshotLength+" Llamas Found");
	for ( var i = 0; i < emoticonLlamas.snapshotLength; i++ ) {
		emoticonLlamas.snapshotItem(i).style.display = "none";
	}


})();