/* javascript to allow menu dropdowns to work on touchscreen devices */

$(document).ready(function() {
  if ( (navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i)) || (navigator.userAgent.match(/Android/i)) ) {

    if ( navigator.userAgent.match(/Android/i) ) {
      $('#main-nav li, #left-nav li').hover(function() {
        $(this).children('ul').hide();
      }, function() {
        $(this).children('ul').hide();
      });
    }

    $('#main-nav li').click(function(event) {
      $(this).children('ul').toggle();
    });
    $('#left-nav li').click(function(event) {
      $(this).children('ul').toggle().css('position', 'relative').css('left', '105px').css('top', '-230px');
    });
  }
});


