// web

log('web')


mode.app = false
mode.name = 'web'

if( /iPad/.exec(navigator.userAgent) ) {
  mode.name = 'front'
}

if( /iPhone/.exec(navigator.userAgent) ) {
  mode.name = 'small'
}


function initdevice() {
  document.addEventListener("deviceready",function(){
    init()
  },false);
}

function initweb() {
  $(function(){

    if( !mode.touch ) {
      document.body.style.width = '1024px'
    }

    init()
  })
}

//initdevice()
initweb()
