// DeviantART - Immobilizer v0.1
// Made By Luke Stevenson {http://lucanos.deviantart.com}
// Distributed and Maintained via GMVC
// Last updated: 24 January 2006
//
//   This script makes the "Make available on deviantMOBILE" checkbox
// unchecked as default.
//
// ==UserScript==
// @name              DeviantART - Immobilizer
// @namespace         http://gmvc.lucanos.com/
// @description       (v0.1) Changes the "Make available on deviantMOBILE" checkbox unchecked as default.
// @include           http://www.deviantart.com/submit/step2?*
// ==/UserScript==

(function() {

	var mobileOptIn = document.evaluate("//input[@id='devismobile']",document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
	if ( mobileOptIn.snapshotLength>0 ) {
		// Checkbox exist on page
		mobileOptIn.snapshotItem(0).checked = false;
	}

})()