function Menu()
{
	$('.left_block .navigation').children('li').each(function(index) {
		$(this).children('a').replaceWith('<span>'+$(this).children('a').text()+'</span>');
		$(this).children('span').bind('click',function()
				{
					$(this).parent().toggleClass('active');
					$(this).parent().children('ul').each(function(index){
						$(this).toggleClass('active');
					});
				}
			);
	});
}
