function selectMenuItem(id) {
	var el = document.getElementById(id);
	if (el.style.display == 'none') {
		el.style.display = '';
	} else {
		el.style.display = 'none';
	}
	return false;
}

jQuery(function($){

var deviceIphone = "iphone";
var deviceIpod = "ipod";
var uagent = navigator.userAgent.toLowerCase();
function DetectIphone()
{
   if (uagent.search(deviceIphone) > -1)
      return true;
   else
      return false;
}
function DetectIpod()
{
   if (uagent.search(deviceIpod) > -1)
      return true;
   else
      return false;
}
function DetectIphoneOrIpod()
{
    if (DetectIphone())
       return true;
    else if (DetectIpod())
       return true;
    else
       return false;
}

if(DetectIphoneOrIpod()==true){
  $('div.foot').hide();
}

$(window).resize(function(){
  var Ww = $(window).width();
  if(Ww<1024){
    $('div.foot').hide();
  }else{
    $('div.foot').show();
  }  
});

  var Ww = $(window).width();
  if(Ww<1024){
    $('div.foot').hide();
  }

});
