/* Просмотр доп информации о б объекте */
window.inf = function(obj){	var cont = $(obj).getParent('div[class=innr]');	if ($(obj).get('opened')){		if ($(obj).working == 1) return false;		$(obj).working = 1;		new Fx.Tween(cont).start('height',155,45).addEvents({			'onComplete':function(){				$(obj).set('opened','').getParent('div[class$=max]').removeClass('max');				$(obj).working = 0;			}		});	} 	else {		if ($(obj).working == 1) return false;		$(obj).working = 1;		new Fx.Tween(cont).start('height',45,155).addEvents({			'onComplete':function(){				$(obj).set('opened','opened').getParent('div[class^=add]').addClass('max');				$(obj).working = 0;							}		});		/*		$(obj).set('opened','opened').getParent('div[class^=add]').addClass('max');		new Fx.Tween(cont).start('height',45,155);		$(obj).working = 0;		*/	}	return false;};window.fpad = {		select:function(p,n){		$(document.body).getElements('div[id^='+p+']').each(function(el){			el.removeClass('current');		});		$(p+''+n).addClass('current');	}	};
