//ar-
if (!ar) var ar = {};
ar.showZakaz = function(){
	var duration = 'slow';
	$('.show_a').click(shoW);
	$('.zakaz li').removeAttr('style')
	function shoW(e){
		e.preventDefault();
		if($(this).next().is('div')){
			$(this).next().toggle('normal');
		}
	}
}
//$(document).ready(function(){ar.showZakaz()});
