$(document).ready(function(){
	var menu = $(document.getElementById("MenuBar1"));
	var ua = window.navigator.userAgent.toLowerCase();
	var items = menu.find(".MenuBarItemSubmenu").parent();
	var mobile = (ua.match(/ipad/i) || ua.match(/iphone/i) || ua.match(/android/i));
	$.each(items, function(){
		var $this = $(this);
		$this.hover(function(){
			$(this).addClass("MenuNowActive").find("> a").addClass("MenuBarItemSubmenuHover").next().addClass("MenuBarSubmenuVisible");
		}, function(){
			$(this).removeClass("MenuNowActive").find("> a").removeClass("MenuBarItemSubmenuHover").next().removeClass("MenuBarSubmenuVisible");
		});
		if (mobile) {
			$this.find("> a").bind("click", function(e){
				var href = $(this).attr("href");
				e.preventDefault();
				if (href !== "#") {
					$(this).unbind();
				};
			});
		};
	});
});
