// JavaScript Document
var browser=navigator.userAgent.toLowerCase();
var users_browser = (browser.indexOf('iPhone')!=-1);


function orient() { switch(window.orientation) {
case 0: orient="portrait";
break;
case -90: orient = "landscape";
break;
case 90: orient = "landscape";
break;
case 180: orient = "portrait";
break;
}
document.body.setAttribute("orient", orient);
}

window.scrollTo(0, 1); 
