// ==UserScript==
// @name		Hotornot AccessKeys
// @namespace		http://rhyley.port5.com/
// @description		Adds access keys 1-0 for ratings
// @include		http://*hotornot.com/*
// ==/UserScript==


allRadio = document.evaluate("//input[@type='radio']",document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
thisRadio = allRadio.snapshotItem(0);
	thisRadio.setAttribute('accesskey','1');
thisRadio = allRadio.snapshotItem(1);
	thisRadio.setAttribute('accesskey','2');
thisRadio = allRadio.snapshotItem(2);
	thisRadio.setAttribute('accesskey','3');
thisRadio = allRadio.snapshotItem(3);
	thisRadio.setAttribute('accesskey','4');
thisRadio = allRadio.snapshotItem(4);
	thisRadio.setAttribute('accesskey','5');
thisRadio = allRadio.snapshotItem(5);
	thisRadio.setAttribute('accesskey','6');
thisRadio = allRadio.snapshotItem(6);
	thisRadio.setAttribute('accesskey','7');
thisRadio = allRadio.snapshotItem(7);
	thisRadio.setAttribute('accesskey','8');
thisRadio = allRadio.snapshotItem(8);
	thisRadio.setAttribute('accesskey','9');
thisRadio = allRadio.snapshotItem(9);
	thisRadio.setAttribute('accesskey','0');
