$(function() {
$("#all_advert").collapsorz({
minimum: 0
, showText: "Узнать больше >>"
, hideText: "Скрыть текст <<"
, toggle: "p"
});
$('tr.parent')
		.css("cursor","pointer")
		.attr("title","Нажмите для просмотра подробностей/Скрытия")
		.click(function(){
			$(this).siblings('.child-'+this.id).toggle();
		});
	$('tr[@class^=child-]').hide().children('td');
});
