			if(
				navigator.userAgent.match(/Android/i) ||
				navigator.userAgent.match(/webOS/i) ||
				navigator.userAgent.match(/iPhone/i) ||
				navigator.userAgent.match(/iPod/i) || 
				navigator.userAgent.match(/iPad/i)
			){
				// Navigateur mobile detecté
				$('#pravda-menu li').click(function(){
					$(this).children('a.menu-on').fadeIn();
				}, function() {
					$(this).children('a.menu-on').fadeOut();
				});

			} else {
				// Navigateur normal
				$('#pravda-menu li').hover(function(){
					$(this).children('a.menu-on').fadeIn();
				}, function() {
					$(this).children('a.menu-on').fadeOut();
				});
			}
