$(document).ready(function(){
		$('#on_menedjer').show();
		$('#viezd').click(function(){
			var width = document.getElementById('on_menedjer').offsetWidth
			if(width>50){
				$('#on_menedjer').animate({width:'41px'},'slow');
			}else $('#on_menedjer').animate({width:'260px'},'slow');
		});
		$('#zaezd').click(function(){
			$('#on_menedjer').animate({width:'41px'},'slow');
		});
});
