$(function(){ if(ispc()){ $('#welcome').hover(function(){ $(".welcome_down").stop(true,true).slidedown(300); },function(){ $(".welcome_down").slideup(300); }); $("#product").hover(function(){ $(".product_down").stop(true,true).slidedown(300); },function(){ $(".product_down").slideup(300); }); $('#contactus').hover(function(){ $(".contact_down").stop(true,true).slidedown(300); },function(){ $(".contact_down").slideup(300); }); $('#service').hover(function(){ $(".service_down").stop(true,true).slidedown(300); },function(){ $(".service_down").slideup(300); }); $('#scheme').hover(function(){ $(".scheme_down").stop(true,true).slidedown(300); },function(){ $(".scheme_down").slideup(300); }); $('#news').hover(function(){ $(".news_down").stop(true,true).slidedown(300); },function(){ $(".news_down").slideup(300); }); } }); function show_search(){ $('#hidden_form').toggle(); } function ispc() { var useragentinfo = navigator.useragent; var agents = ["android", "iphone", "symbianos", "windows phone", "ipad", "ipod"]; var flag = true; for (var v = 0; v < agents.length; v++) { if (useragentinfo.indexof(agents[v]) > 0) { flag = false; break; } } return flag; }