var ru_url, en_url;
 if (document.location.pathname.length> 0) {
  sub_url = document.location.pathname.substring(4,document.location.pathname.length);
  ru_url = '/ru/'+sub_url;
  en_url = '/en/'+sub_url;
}
else {
  ru_url = '/ru/';
  en_url = '/en/';
}



$(document).ready(function()
{
	$('div.top ul.menu li a').hover(
	    function() { 
	        $(this).children('b').animate({top: '20px'}, 200); 
	        $(this).children('i').show(); 
	    },
	    function() {
	        $(this).children('b').stop();
	        $(this).children('b').hide().css('top', '0px').show(); 
	        $(this).children('i').hide();
	    }
	);

});
