// ==UserScript==// @name          Degradr// @namespace     http://www.randomchaos.com/software/firefox/greasemonkey/degradr/// @description	  Makes flickr work without flash
// @include       http://flickr.com/*// @include       http://www.flickr.com/*// ==/UserScript==s(function() {

inner = '<img src="http://photos' + ps_photo_server + '.flickr.com/';
inner = inner + ps_photo_id + '_' + ps_photo_secret + '.jpg" />';
photo = document.getElementById( 'photoImgDiv' + ps_photo_id );
photo.innerHTML = inner;

})();