;(function($){$.iPhone={init:function(){$(window).bind('orientationchange',$.iPhone.updateOrientation);this.updateOrientation();$('body').css({'min-height':'420px','min-width':'320px'})},orientation:'portrait',updateOrientation:function(){this.orientation=(window.orientation===0||window.orientation==null||window.orientation===180)?'portrait':'landscape';$('body').attr('orient',this.orientation);setTimeout($.iPhone.hideURL,100)},hideURL:function(){window.scrollTo(0,1);setTimeout(function(){window.scrollTo(0,0)},0)},preloadImages:function(c){$(c).each(function(a,b){(new Image()).src=b})}};$.fn.addTouch=function(){this.each(function(i,a){$(a).bind('touchstart touchmove touchend touchcancel',function(){d(event)})});var d=function(a){var b=a.changedTouches,first=b[0],type='';switch(a.type){case'touchstart':type='mousedown';break;case'touchmove':type='mousemove';break;case'touchend':type='mouseup';break;default:return}var c=document.createEvent('MouseEvent');c.initMouseEvent(type,true,true,window,1,first.screenX,first.screenY,first.clientX,first.clientY,false,false,false,false,0,null);first.target.dispatchEvent(c);a.preventDefault()}}})(jQuery);$(document).ready(function(){$.iPhone.init()});
