(function($) {
		  $(document).ready(function() {
      //ipad and iphone fix
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {
   $("ul#navigation li").live('touchstart', function(){
        console.log("touch started");
    });
     $("ul#navigation li").live('touchend', function(){
        console.log("touch ended");
    });
}
});     })(jQuery);
