// DeviantART - Dontload v0.1
// Made By Luke Stevenson {http://lucanos.deviantart.com}
// Distributed and Maintained via GMVC
// Last updated: 11 October 2007
//
//   This script makes the "Allow download of Original (Full-Sized) Image"
// checkbox unchecked as default.
//
// ==UserScript==
// @name              DeviantART - Dontload
// @namespace         http://gmvc.lucanos.com/
// @description       (v0.1) Changes the "Allow download of Original Image" checkbox unchecked as default.
// @include           http://www.deviantart.com/submit/*
// ==/UserScript==

(function() {

	unsafeWindow.document.getElementById('devisdownloadable').checked = false;

})()