// function adapted from: 
// http://alastairc.ac/2010/03/detecting-touch-based-browsing/
function isTouchDevice() {
   var el = document.createElement('div');
   el.setAttribute('ontouchstart', 'return;');
   if (typeof el.ontouchstart == "function"){
      return true;
   } else {
      return false
   }
}

