diff -r fd46b1bf708e -r 9d239396be42 includes/clientside/static/dropdown.js --- a/includes/clientside/static/dropdown.js Tue Apr 08 20:08:35 2008 -0400 +++ b/includes/clientside/static/dropdown.js Tue Apr 08 20:30:50 2008 -0400 @@ -92,6 +92,10 @@ obj.childNodes[i].onmouseover = function() { jBoxOverHandler(this); }; obj.childNodes[i].onmouseout = function(e) { jBoxOutHandler(this, e); }; obj.childNodes[i].nextSibling.onmouseout = function(e) { jBoxOutHandler(this, e); }; + if ( is_iPhone ) + { + obj.childNodes[i].onclick = function() { jBoxOverHandler(this); return false; }; + } } } }