var mobile=false;$(document).ready(function(){var wsize=$(window).width();if(wsize<=570){mobile=true;}else{mobile=false;}$("#ufooter h3").on("click",function(){if(mobile===true){var drop=$(this).parent().find("ul");if(drop.hasClass("open")){drop.removeClass("open");}else{drop.addClass("open");}}});});$(window).resize(function(){var curWsize=$(window).width();if(curWsize<=570){mobile=true;}else{mobile=false;}});