Вы наверняка делаете что-то через задний проход.
Но если очень хочется:
<input type="hidden" id="a1" value="123">
<input type="hidden" id="a2" value="123">
<input type="hidden" id="a3" value="123">
<input type="hidden" id="a4" value="123">
<input type="hidden" id="a5" value="123">
<script>function getById(id){return document.getElementById(id);}
var a=[getById('a1'),getById('a2'),getById('a3'),getById('a4'),getById('a5')];
alert(a.indexOf(getById('a3')))
</script>