// JavaScript Document
/*if (screen.width <= 699) {
document.location = "../mobile/mobile.php";}
*/
if ((navigator.userAgent.match(/iPad/i)) || (navigator.userAgent.match(/iPad/i))) {
   location.replace("./ipad/");
}

//ipad and iphone fix
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {
    $(".menu li a").click(function(){
        //we just need to attach a click event listener to provoke iPhone/iPod/iPad's hover event
        //strange
    });
}
