$(function() {

$('a.touch, .touch a')
  .bind('touchstart', function() {
    $(this).trigger('onmouseover');
    return false;
  })
  
  .bind('touchend', function() {
    $(this).trigger('onmouseout');
    return false;
  });

});

