hey again,
sorry the code didnt work
but i didnt check it
i did however try something else and it does seem to work for me (i figured out how to break it first

)
open up you js file again (the one you edited before, if you still have the code i gave you before in there delete it)
now find
| Code: |
el.addEvent('click', function(e){
el.select();
});
|
and replace with this
| Code: |
el.addEvent('click', function(e){
e = new Event(e).hide();
el.select();
});
|
this although produces a js error, works for me, please try again and let me know
thanks
RL