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

(function(){

 /* Loop waiting for Greasemonkey to Initialise */
  function GM_init() {
    if( typeof unsafeWindow.jQuery=='undefined' ) { 
      window.setTimeout( GM_init , 100 ); 
    } else { 
      jQuery_init( unsafeWindow.jQuery );
    }
  }
 /* Start the Loop */
  GM_init();

 /* Execute once jQuery is Available */
  function jQuery_init($) {
    $( 'img[src*="/llama.gif"]' ).hide();
  }

})();
